Skip to content

Commit

Permalink
update version numbers in pom.xml files #10
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteph-de committed Nov 3, 2024
1 parent 7a8076d commit 3bae906
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion archetype-catalog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<archetype>
<groupId>org.mycore.skeleton</groupId>
<artifactId>mycore-skeleton-archetype</artifactId>
<version>2022.06-SNAPSHOT</version>
<version>2024.06-SNAPSHOT</version>
<repository>https://oss.sonatype.org/content/repositories/snapshots</repository>
<description>A skeleton to start with new MyCoRe application development</description>
</archetype>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<artifactId>mycore-parent</artifactId>
<groupId>org.mycore</groupId>
<version>51</version>
<version>55</version>
</parent>

<groupId>org.mycore.skeleton</groupId>
<artifactId>mycore-skeleton-archetype</artifactId>
<version>2023.06-SNAPSHOT</version>
<version>2024.06-SNAPSHOT</version>
<packaging>maven-archetype</packaging>

<name>mycore-skeleton-archetype</name>
Expand All @@ -26,15 +26,15 @@
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>3.2.1</version>
<version>3.3.1</version>
</extension>
</extensions>

<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>3.2.1</version>
<version>3.3.1</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
29 changes: 15 additions & 14 deletions src/main/resources/archetype-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@
<description>The main Maven Project for ${projectName}</description>
<inceptionYear>2020</inceptionYear>
<properties>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.release>21</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jetty.version>11.0.15</jetty.version>
<!-- specifiy the MyCoRe version here (release nr or *-SNAPSHOT): -->
<mycore.version>2023.06.1-SNAPSHOT</mycore.version>
<jetty.version>12.0.14</jetty.version>
<!-- specifiy the MyCoRe version here (release no. or *-SNAPSHOT): -->
<mycore.version>2024.06.0-SNAPSHOT</mycore.version>
</properties>
<!-- put your Git or SVN URLs here -->
<scm>
Expand All @@ -34,15 +35,15 @@
https://github.com/MyCoRe-Org/mycore-parent-pom/blob/v51/pom.xml -->
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<version>3.4.2</version>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
<version>3.4.0</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down Expand Up @@ -126,17 +127,17 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.10</version>
<version>2.4.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.0.0</version>
<version>3.7.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<version>3.5.0</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down Expand Up @@ -233,7 +234,7 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.200</version>
<version>2.3.232</version>
</dependency>
<dependency>
<groupId>org.mycore</groupId>
Expand All @@ -245,12 +246,12 @@
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>4.3.1</version>
<version>4.6.2</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>font-awesome</artifactId>
<version>5.10.1</version>
<version>5.15.4</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
Expand Down

0 comments on commit 3bae906

Please sign in to comment.