Skip to content

Commit

Permalink
Changed for 2.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
santanusinha committed Apr 4, 2023
1 parent 393cc43 commit 0246c42
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 10 deletions.
3 changes: 3 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 2.0.2
- Added equals and hashCode to value types

# 2.0.1
- Reflections library shaded

Expand Down
2 changes: 1 addition & 1 deletion hope-core/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>hope</artifactId>
<groupId>io.appform.hope</groupId>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>hope-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hope-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>hope</artifactId>
<groupId>io.appform.hope</groupId>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion hope-lang/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>hope</artifactId>
<groupId>io.appform.hope</groupId>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
60 changes: 53 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>io.appform.hope</groupId>
<artifactId>hope</artifactId>
<packaging>pom</packaging>
<version>2.0.1</version>
<version>2.0.2</version>

<name>Hope</name>
<url>https://github.com/santanusinha/hope</url>
Expand Down Expand Up @@ -91,6 +91,8 @@
<guava.version>31.0.1-jre</guava.version>
<json-path.version>2.7.0</json-path.version>
<jackson.version>2.13.1</jackson.version>
<surefire.version>3.0.0-M5</surefire.version>
<normalBuild>false</normalBuild>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -173,6 +175,9 @@
<value>true</value>
</property>
</activation>
<properties>
<normalBuild>true</normalBuild>
</properties>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -219,6 +224,52 @@
</plugins>
</build>
</profile>
<profile>
<id>perf</id>
<activation>
<property>
<name>normalBuild</name>
<value>false</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<includes>
<include>**/*</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<normalBuild>true</normalBuild>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<excludes>
<exclude>**/*Perf*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
Expand All @@ -232,11 +283,7 @@
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>

<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
Expand Down Expand Up @@ -307,5 +354,4 @@
</plugins>
</build>


</project>

0 comments on commit 0246c42

Please sign in to comment.