Trinh Tong il y a 6 ans
Parent
révision
0e42200c18
3 fichiers modifiés avec 11 ajouts et 0 suppressions
  1. 11
    0
      pom.xml
  2. 0
    0
      src/main/java/ROT13.java
  3. 0
    0
      src/test/java/ROT13Test.java

+ 11
- 0
pom.xml Voir le fichier

@@ -8,5 +8,16 @@
8 8
     <artifactId>SimpleCrypt</artifactId>
9 9
     <version>1.0-SNAPSHOT</version>
10 10
 
11
+    <properties>
12
+        <maven.compiler.source>1.8</maven.compiler.source>
13
+        <maven.compiler.target>1.8</maven.compiler.target>
14
+    </properties>
15
+    <dependencies>
16
+        <dependency>
17
+            <groupId>junit</groupId>
18
+            <artifactId>junit</artifactId>
19
+            <version>4.12</version>
20
+        </dependency>
21
+    </dependencies>
11 22
 
12 23
 </project>

Crypto/src/ROT13.java → src/main/java/ROT13.java Voir le fichier


Crypto/src/ROT13Test.java → src/test/java/ROT13Test.java Voir le fichier