Skip to content

Commit

Permalink
Upate Ares to 1.11.2 (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strohgelaender authored Feb 5, 2023
1 parent 23c443f commit f1dadb2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ADD artemis-java-template /opt/artemis-java-template

RUN cd /opt/artemis-java-template && pwd && ls -la && mvn clean install test && mvn spotbugs:spotbugs checkstyle:checkstyle pmd:pmd

RUN cd /opt/artemis-java-template && pwd && ls -la && ./gradlew clean publishToMavenLocal test && ./gradlew check && ./gradlew --version
RUN cd /opt/artemis-java-template && pwd && ls -la && ./gradlew clean test check -x test publishToMavenLocal && ./gradlew --version

RUN rm -rf /opt/artemis-java-template

Expand Down
4 changes: 2 additions & 2 deletions artemis-java-template/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'maven-publish'
id 'com.teamscale' version '27.0.1'
id 'org.openjfx.javafxplugin' version '0.0.13'
id 'org.springframework.boot' version '3.0.0'
id 'org.springframework.boot' version '3.0.2'
id 'io.spring.dependency-management' version '1.1.0'
id 'org.checkerframework' version '0.6.20'
}
Expand All @@ -19,7 +19,7 @@ repositories {
}

dependencies {
testImplementation 'de.tum.in.ase:artemis-java-test-sandbox:1.11.1'
testImplementation 'de.tum.in.ase:artemis-java-test-sandbox:1.11.2'
implementation 'org.apache.commons:commons-lang3:3.12.0'
}

Expand Down
23 changes: 14 additions & 9 deletions artemis-java-template/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<argLine>-Dfile.encoding=UTF-8</argLine>
<javafx.version>17.0.2</javafx.version>
<mockito.version>4.11.0</mockito.version>
<springboot.version>3.0.1</springboot.version>
<bytebuddy.version>1.12.20</bytebuddy.version>
<mockito.version>5.1.1</mockito.version>
<springboot.version>3.0.2</springboot.version>
<bytebuddy.version>1.12.23</bytebuddy.version>
<scaConfigDirectory>${project.basedir}/staticCodeAnalysisConfig</scaConfigDirectory>
<analyzeTests>false</analyzeTests>
</properties>
<dependencies>
<dependency>
<groupId>de.tum.in.ase</groupId>
<artifactId>artemis-java-test-sandbox</artifactId>
<version>1.11.1</version>
<version>1.11.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -30,13 +30,13 @@
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.9.1</version>
<version>5.9.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-testkit</artifactId>
<version>1.9.1</version>
<version>1.9.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -77,12 +77,12 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.14.1</version>
<version>2.14.2</version>
</dependency>
<dependency>
<groupId>org.jsonschema2pojo</groupId>
<artifactId>jsonschema2pojo-core</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>org.eclipse.jgit</groupId>
Expand Down Expand Up @@ -157,7 +157,7 @@
<dependency>
<groupId>net.jqwik</groupId>
<artifactId>jqwik</artifactId>
<version>1.7.1</version>
<version>1.7.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -170,6 +170,11 @@
<artifactId>byte-buddy-agent</artifactId>
<version>${bytebuddy.version}</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>5.1.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-interpolation</artifactId>
Expand Down

0 comments on commit f1dadb2

Please sign in to comment.