Skip to content

Commit

Permalink
enhancements
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed Jun 27, 2023
1 parent a8020f0 commit 9547401
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 12 deletions.
14 changes: 9 additions & 5 deletions src/main/resources/projects-templates/app/gwt/basic/pom.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<domino.ui.version>${domino_ui_version}</domino.ui.version>
<gwt.version>${gwt_version}</gwt.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt</artifactId>
<version>2.9.0</version>
<version>${r"${gwt.version}"}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -49,14 +50,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- Do not upgrade past 3.1 to avoid triggering https://issues.apache.org/jira/browse/MSOURCES-95 -->
<!-- Unless you use annotation processors, then upgrade to 3.5.1 at a minimum -->
<version>3.5.1</version>
<version>3.11.0</version>
<configuration>
<source>${r"${maven.compiler.source}"}</source>
<target>${r"${maven.compiler.target}"}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.4.0</version>
</plugin>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
Expand All @@ -65,7 +69,7 @@
<plugin>
<groupId>net.ltgt.gwt.maven</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<extensions>true</extensions>
<configuration>
<sourceLevel>${r"${maven.compiler.source}"}</sourceLevel>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/projects-templates/app/gwt/mvp/pom.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
<plugin>
<groupId>net.ltgt.gwt.maven</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<extensions>true</extensions>
<configuration>
<sourceLevel>${r"${maven.compiler.source}"}</sourceLevel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,17 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<!-- Do not upgrade past 3.1 to avoid triggering https://issues.apache.org/jira/browse/MSOURCES-95 -->
<!-- Unless you use annotation processors, then upgrade to 3.5.1 at a minimum -->
<version>3.5.1</version>
<version>3.11.0</version>
<configuration>
<source>${r"${maven.compiler.source}"}</source>
<target>${r"${maven.compiler.target}"}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.4.0</version>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
Expand Down
9 changes: 6 additions & 3 deletions src/main/resources/projects-templates/app/j2cl/basic/pom.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- Do not upgrade past 3.1 to avoid triggering https://issues.apache.org/jira/browse/MSOURCES-95 -->
<!-- Unless you use annotation processors, then upgrade to 3.5.1 at a minimum -->
<version>3.5.1</version>
<version>3.11.0</version>
<configuration>
<source>${r"${maven.compiler.source}"}</source>
<target>${r"${maven.compiler.target}"}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.4.0</version>
</plugin>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
Expand Down

0 comments on commit 9547401

Please sign in to comment.