Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/version_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ assignees: ''

## Description

After the release of USE version ${{env.OLD_USE_VERSION}} it is tiome to change
After the release of USE version ${{env.OLD_USE_VERSION}} it is time to change
the version to a new one. For this, please change the following files:

* ./pom.xml
* ./use-assembly/pom.xml
* ./use-core/pom.xml
* ./use-core/src/main/java/org/tzi/use/config/Options.java
* ./use-gui/pom.xml
* ./use-gui/pom.xml
3 changes: 3 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>org.tzi.use</groupId>
<artifactId>use</artifactId>
<packaging>pom</packaging>
<version>7.1.1</version>
<version>7.5.0</version>
<modules>
<module>use-assembly</module>
<module>use-core</module>
Expand Down
12 changes: 10 additions & 2 deletions use-assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,23 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>use</artifactId>
<groupId>org.tzi.use</groupId>
<version>7.1.1</version>
<artifactId>use</artifactId>
<version>7.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<packaging>pom</packaging>
<artifactId>use-assembly</artifactId>

<dependencies>
<dependency>
<groupId>org.tzi.use</groupId>
<artifactId>use-gui</artifactId>
<version>7.5.0</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand Down
9 changes: 5 additions & 4 deletions use-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>use</artifactId>
<groupId>org.tzi.use</groupId>
<version>7.1.1</version>
<artifactId>use</artifactId>
<version>7.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>use-core</artifactId>
<packaging>jar</packaging>

<properties>
<maven.compiler.source>21</maven.compiler.source>
Expand All @@ -20,7 +21,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>[30.0-jre,)</version>
<version>33.5.0-jre</version>
</dependency>
<dependency>
<groupId>org.eclipse.jdt</groupId>
Expand Down Expand Up @@ -55,7 +56,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava-testlib</artifactId>
<version>20.0</version>
<version>33.5.0-jre</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions use-core/src/main/java/org/tzi/use/config/Options.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
public class Options {

// the release version
public static final String RELEASE_VERSION = "7.1.1";
public static final String RELEASE_VERSION = "7.5.0";

// the copyright
public static final String COPYRIGHT = "Copyright (C) 1999-2024 University of Bremen & " +
public static final String COPYRIGHT = "Copyright (C) 1999-2025 University of Bremen & " +
"University of Applied Sciences Hamburg";

// the trained support apes
Expand Down
45 changes: 34 additions & 11 deletions use-gui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,22 @@
<parent>
<artifactId>use</artifactId>
<groupId>org.tzi.use</groupId>
<version>7.1.1</version>
<version>7.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>use-gui</artifactId>
<dependencies>
<!-- new -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>use-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.5.0-jre</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
Expand Down Expand Up @@ -98,21 +107,14 @@
<dependency>
<groupId>com.github.almasb</groupId>
<artifactId>fxgl</artifactId>
<version>17</version>
<version>21.1</version>
<exclusions>
<exclusion>
<groupId>org.openjfx</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- ^^new^^ -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>use-core</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
Expand All @@ -129,10 +131,16 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.ximpleware</groupId>
<artifactId>vtd-xml</artifactId>
<version>2.13.4</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.38</version>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down Expand Up @@ -169,12 +177,27 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.8.2</junit.version>
<lombok.version>1.18.42</lombok.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
Expand Down
Loading
Loading