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/workflows/CryptatorTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs :
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '17'
distribution: 'adopt'
cache: 'maven'
- name: Cache local Maven repository
Expand Down
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Each letter represents a digit, and the goal is to reconstruct the original arit
<dependency>
<groupId>fr.univ-cotedazur</groupId>
<artifactId>cryptator</artifactId>
<version>1.0.2</version>
<version>2.0.0-SNAPSHOT</version>
</dependency>
#+END_EXAMPLE

Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<groupId>fr.univ-cotedazur</groupId>
<artifactId>cryptator</artifactId>
<packaging>jar</packaging>
<version>1.0.2</version>
<version>2.0.0-SNAPSHOT</version>
<name>cryptator</name>
<description>Constraint-based cryptarithm solver</description>
<url>https://github.com/arnaud-m/cryptator</url>
Expand Down Expand Up @@ -50,8 +50,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyy</maven.build.timestamp.format>
<!-- Java source/target to use for compilation. -->
<javac.target>11</javac.target>
<javac.source>11</javac.source>
<javac.target>17</javac.target>
<javac.source>17</javac.source>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/args4j/args4j -->
Expand Down Expand Up @@ -79,7 +79,7 @@
<dependency>
<groupId>org.choco-solver</groupId>
<artifactId>choco-solver</artifactId>
<version>4.10.18</version>
<version>6.0.0</version>
</dependency>
<dependency>
<groupId>guru.nidi</groupId>
Expand Down Expand Up @@ -126,11 +126,11 @@
<!-- Only required when JAVA_HOME isn't at least Java 9 and when haven't
configured the maven-toolchains-plugin -->
<jdkToolchain>
<version>11</version>
<version>17</version>
</jdkToolchain>
<release>11</release>
<source>11</source>
<target>11</target>
<release>17</release>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
Expand Down
Loading