Skip to content

Commit

Permalink
0.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
treblereel committed Jul 9, 2024
1 parent 380031b commit c0375c2
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 24 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.treblereel.gwt.xml.mapper</groupId>
<artifactId>mapper-parent</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</parent>

<artifactId>api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.treblereel.gwt.xml.mapper</groupId>
<artifactId>mapper-parent</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</parent>

<artifactId>common</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.treblereel.gwt.xml.mapper</groupId>
<artifactId>mapper-parent</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
<packaging>pom</packaging>

<name>mapper-parent</name>
Expand Down Expand Up @@ -62,13 +62,13 @@
<maven.scm.provider.gitexe>1.9.5</maven.scm.provider.gitexe>

<elemental2.version>1.2.1</elemental2.version>
<j2cl.version>v20230718-1</j2cl.version>
<j2cl.version>v20240622-2</j2cl.version>
<javax.annotation.api.version>1.3.1</javax.annotation.api.version>
<javaparser.core.version>3.13.1</javaparser.core.version>
<apache.commons.lang3.version>3.9</apache.commons.lang3.version>
<junit.version>4.13.1</junit.version>

<gwt.jakarta.version>0.4-SNAPSHOT</gwt.jakarta.version>
<gwt.jakarta.version>0.4</gwt.jakarta.version>
<com.fasterxml.woodstox.version>6.2.1</com.fasterxml.woodstox.version>
<auto.common.version>0.11</auto.common.version>
<auto.service.version>1.0-rc6</auto.service.version>
Expand Down
2 changes: 1 addition & 1 deletion processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.treblereel.gwt.xml.mapper</groupId>
<artifactId>mapper-parent</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</parent>

<artifactId>processor</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import org.treblereel.gwt.xml.mapper.apt.processor.BeanProcessor;

@AutoService(Processor.class)
@SupportedSourceVersion(SourceVersion.RELEASE_8)
@SupportedSourceVersion(SourceVersion.RELEASE_11)
public class ApplicationProcessor extends AbstractProcessor {

private final TreeLogger logger = new PrintWriterTreeLogger();
Expand Down
14 changes: 7 additions & 7 deletions samples/gwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<!-- Convenience property to set the GWT version -->
<gwt.version>2.10.0</gwt.version>

<!-- GWT 2.8 requires 1.8 -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- GWT 2.8 requires 11 -->
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down Expand Up @@ -51,12 +51,12 @@
<dependency>
<groupId>org.treblereel.gwt.xml.mapper</groupId>
<artifactId>api</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</dependency>
<dependency>
<groupId>org.treblereel.gwt.xml.mapper</groupId>
<artifactId>processor</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -126,8 +126,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
Expand Down
15 changes: 7 additions & 8 deletions samples/j2cl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,14 @@
<webappdir>${project.build.directory}/webapp</webappdir>
<webapp.libdir>${webappdir}/WEB-INF/lib</webapp.libdir>

<j2cl.maven.plugin.version>0.22</j2cl.maven.plugin.version>
<elemental2.version>1.2.1</elemental2.version>

<google.jsinterop.version>1.0.0</google.jsinterop.version>
<j2cl.version>v20230718-1</j2cl.version>
<j2cl.maven.plugin.version>0.22.0</j2cl.maven.plugin.version>
<j2cl.maven.plugin.version>0.23.1</j2cl.maven.plugin.version>
<j2cl.version>v20240622-2</j2cl.version>

<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>

<maven.compiler.plugin.version>3.8.0</maven.compiler.plugin.version>
<maven.tomcat7.plugin.version>2.2</maven.tomcat7.plugin.version>
Expand All @@ -36,12 +35,12 @@
<dependency>
<groupId>org.treblereel.gwt.xml.mapper</groupId>
<artifactId>api</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</dependency>
<dependency>
<groupId>org.treblereel.gwt.xml.mapper</groupId>
<artifactId>processor</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -103,7 +102,7 @@
</executions>
</plugin>
<plugin>
<groupId>com.vertispan.j2cl</groupId>
<groupId>org.kie.j2cl.tools</groupId>
<artifactId>j2cl-maven-plugin</artifactId>
<version>${j2cl.maven.plugin.version}</version>
<executions>
Expand Down
2 changes: 1 addition & 1 deletion tests/jre/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.treblereel.gwt.xml.mapper</groupId>
<artifactId>tests</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</parent>

<artifactId>jre-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.treblereel.gwt.xml.mapper</groupId>
<artifactId>mapper-parent</artifactId>
<version>0.8-SNAPSHOT</version>
<version>0.8</version>
</parent>

<artifactId>tests</artifactId>
Expand Down

0 comments on commit c0375c2

Please sign in to comment.