File tree Expand file tree Collapse file tree 12 files changed +54
-55
lines changed Expand file tree Collapse file tree 12 files changed +54
-55
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ repositories {
7
7
allprojects {
8
8
apply plugin : ' java'
9
9
apply plugin : ' idea'
10
- apply plugin : ' maven'
11
10
12
11
group ' org.openjavacard.tools'
13
12
version ' 0.1-SNAPSHOT'
@@ -16,6 +15,11 @@ allprojects {
16
15
mavenCentral()
17
16
}
18
17
18
+ java {
19
+ // withSourcesJar()
20
+ // withJavadocJar()
21
+ }
22
+
19
23
idea {
20
24
module {
21
25
downloadJavadoc = true
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ archivesBaseName = 'openjavacard-cap-file'
4
4
sourceCompatibility = 1.8
5
5
6
6
dependencies {
7
- compile project(' :common' )
7
+ api project(' :common' )
8
8
9
9
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
10
- compile group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
10
+ implementation group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
11
11
12
- testCompile project(' :cap-testing' )
12
+ testImplementation project(' :cap-testing' )
13
13
14
14
// https://mvnrepository.com/artifact/junit/junit
15
- testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
15
+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.12'
16
16
}
Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ archivesBaseName = 'openjavacard-cap-model'
4
4
sourceCompatibility = 1.8
5
5
6
6
dependencies {
7
- compile project(' :common' )
8
- compile project(' :cap-file' )
7
+ api project(' :common' )
8
+ api project(' :cap-file' )
9
9
10
10
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations
11
- compile group : ' com.fasterxml.jackson.core' , name : ' jackson-annotations' , version : ' 2.9.8'
11
+ implementation group : ' com.fasterxml.jackson.core' , name : ' jackson-annotations' , version : ' 2.9.8'
12
12
13
13
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
14
- compile group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
14
+ implementation group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
15
15
// https://mvnrepository.com/artifact/junit/junit
16
- testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
16
+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.12'
17
17
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ sourceCompatibility = 1.8
5
5
6
6
dependencies {
7
7
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
8
- compile group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
8
+ implementation group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
9
9
// https://mvnrepository.com/artifact/junit/junit
10
- testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
10
+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.12'
11
11
}
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ sourceCompatibility = 1.8
5
5
6
6
dependencies {
7
7
// https://mvnrepository.com/artifact/commons-codec/commons-codec
8
- compile group : ' commons-codec' , name : ' commons-codec' , version : ' 1.11'
8
+ implementation group : ' commons-codec' , name : ' commons-codec' , version : ' 1.11'
9
9
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
10
- compile group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
10
+ implementation group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
11
11
// https://mvnrepository.com/artifact/junit/junit
12
- testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
12
+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.12'
13
13
}
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ archivesBaseName = 'openjavacard-globalplatform'
4
4
sourceCompatibility = 1.8
5
5
6
6
dependencies {
7
- compile project(' :common' )
8
- compile project(' :cap-file' )
7
+ api project(' :common' )
8
+ api project(' :cap-file' )
9
9
10
10
// https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk16
11
- compile group : ' org.bouncycastle' , name : ' bcprov-jdk15on' , version : ' 1.59'
11
+ implementation group : ' org.bouncycastle' , name : ' bcprov-jdk15on' , version : ' 1.59'
12
12
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
13
- compile group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
13
+ implementation group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
14
14
// https://mvnrepository.com/artifact/junit/junit
15
- testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
15
+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.12'
16
16
}
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ archivesBaseName = 'openjavacard-jackson'
4
4
sourceCompatibility = 1.8
5
5
6
6
dependencies {
7
- compile project(' :common' )
8
- compile project(' :globalplatform' )
7
+ api project(' :common' )
8
+ api project(' :globalplatform' )
9
9
10
10
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
11
- compile group : ' com.fasterxml.jackson.core' , name : ' jackson-core' , version : ' 2.9.8 '
11
+ implementation group : ' com.fasterxml.jackson.core' , name : ' jackson-core' , version : ' 2.9.10 '
12
12
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
13
- compile group : ' com.fasterxml.jackson.core' , name : ' jackson-databind' , version : ' 2.9.8 '
13
+ implementation group : ' com.fasterxml.jackson.core' , name : ' jackson-databind' , version : ' 2.9.10 '
14
14
// https://mvnrepository.com/artifact/junit/junit
15
- testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
15
+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.12'
16
16
}
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ archivesBaseName = 'openjavacard-packaging'
4
4
sourceCompatibility = 1.8
5
5
6
6
dependencies {
7
- compile project(' :common' )
8
- compile project(' :globalplatform' )
7
+ api project(' :common' )
8
+ api project(' :globalplatform' )
9
9
10
10
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
11
- compile group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
11
+ implementation group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
12
12
// https://mvnrepository.com/artifact/junit/junit
13
- testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
13
+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.12'
14
14
}
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
home=` dirname $0 `
3
- java -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG -jar $home /tool/build/jar /openjavacard-tool-0.1-SNAPSHOT-fat .jar " $@ "
3
+ java -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG -jar $home /tool/build/libs /openjavacard-tool-fat- 0.1-SNAPSHOT.jar " $@ "
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
home=` dirname $0 `
3
- java -Dorg.slf4j.simpleLogger.defaultLogLevel=TRACE -jar $home /tool/build/jar /openjavacard-tool-0.1-SNAPSHOT-fat .jar " $@ "
3
+ java -Dorg.slf4j.simpleLogger.defaultLogLevel=TRACE -jar $home /tool/build/libs /openjavacard-tool-fat- 0.1-SNAPSHOT.jar " $@ "
You can’t perform that action at this time.
0 commit comments