Skip to content

Commit

Permalink
2024 update versions to keep working - sort of
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeberger committed Nov 8, 2024
1 parent adc60d2 commit 39195cb
Showing 1 changed file with 34 additions and 11 deletions.
45 changes: 34 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,28 +37,43 @@
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>4.0.5</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>4.0.5</version>
</dependency>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>9.0.0</version>
<version>11.0.0-M4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<version>1.18.34</version>
</dependency>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>11.0.0</version>
<version>14.0.6</version>
<classifier>jakarta</classifier>
</dependency>
<!-- https://mvnrepository.com/artifact/org.primefaces.themes/excite-bike -->
<dependency>
<groupId>org.primefaces.themes</groupId>
<artifactId>excite-bike</artifactId>
<version>1.0.10</version>
<version>1.1.0</version>
</dependency>

<dependency>
Expand All @@ -69,7 +84,7 @@
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>6.19.1</version>
<version>6.21.4</version>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
Expand Down Expand Up @@ -145,7 +160,7 @@
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.13.3</version>
<version>5.5.13.4</version>
</dependency>

</dependencies>
Expand All @@ -159,16 +174,24 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<version>3.7.0</version>
<configuration>
<source>17</source>
<target>17</target>
<source>23</source>
<target>23</target>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.34</version>
</path>
</annotationProcessorPaths>

</configuration>
</plugin>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-jar-maven-plugin</artifactId>
<version>9.0.0.Final</version>
<version>11.0.2.Final</version>
<configuration>
<feature-pack-location>wildfly@maven(org.jboss.universe:community-universe)</feature-pack-location>
<layers>
Expand Down Expand Up @@ -197,4 +220,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit 39195cb

Please sign in to comment.