Skip to content

Commit

Permalink
Merge branch 'release/1.0.0-RC4'
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed May 26, 2022
2 parents 3f925e9 + 80a1524 commit 51bc935
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 6 deletions.
4 changes: 2 additions & 2 deletions domino-jackson-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.dominokit</groupId>
<artifactId>domino-jackson-parent</artifactId>
<version>1.0.0-RC3</version>
<version>1.0.0-RC4</version>
</parent>

<artifactId>domino-jackson-processor</artifactId>
Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>27.1-jre</version>
<version>31.1-jre</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down
25 changes: 24 additions & 1 deletion domino-jackson-super/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.dominokit</groupId>
<artifactId>domino-jackson-parent</artifactId>
<version>1.0.0-RC3</version>
<version>1.0.0-RC4</version>
</parent>

<artifactId>domino-jackson-super</artifactId>
Expand All @@ -22,5 +22,28 @@
<directory>src/main/java</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>remove-emu-classes</id>
<phase>prepare-package</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.directory}/classes/java</directory>
<includes><include>**/*.class</include></includes>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion domino-jackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.dominokit</groupId>
<artifactId>domino-jackson-parent</artifactId>
<version>1.0.0-RC3</version>
<version>1.0.0-RC4</version>
</parent>

<artifactId>domino-jackson</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.dominokit</groupId>
<artifactId>domino-jackson-parent</artifactId>
<version>1.0.0-RC3</version>
<version>1.0.0-RC4</version>
<packaging>pom</packaging>

<name>domino-jackson-parent</name>
Expand Down Expand Up @@ -67,7 +67,7 @@

<properties>
<snapshot.version>HEAD-SNAPSHOT</snapshot.version>
<next.release.version>1.0.0-RC3</next.release.version>
<next.release.version>1.0.0-RC4</next.release.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit 51bc935

Please sign in to comment.