File tree Expand file tree Collapse file tree 4 files changed +9
-20
lines changed Expand file tree Collapse file tree 4 files changed +9
-20
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ In pom.xml:
11
11
12
12
``` xml
13
13
<dependency >
14
- <groupId >com.github. starkbank</groupId >
14
+ <groupId >com.starkbank</groupId >
15
15
<artifactId >starkbank-ecdsa</artifactId >
16
- <version >0 .0.1-SNAPSHOT </version >
16
+ <version >1 .0.0 </version >
17
17
</dependency >
18
18
```
19
19
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ buildscript {
18
18
plugins {
19
19
id ' java'
20
20
id ' maven'
21
- id ' net.saliman.cobertura ' version ' 3.0.0 '
21
+ id ' maven-publish '
22
22
id ' com.github.kt3k.coveralls' version ' 2.8.2'
23
23
}
24
24
@@ -29,16 +29,11 @@ group = GROUP
29
29
version = VERSION_NAME
30
30
31
31
32
-
33
32
tasks. withType(JavaCompile ) {
34
33
options. compilerArgs << " -Xlint:all" << " -Xlint:-options" << " -Xlint:-processing"
35
34
options. encoding = ' UTF-8'
36
35
}
37
36
38
- // compileJava {
39
- // options.compilerArgs << "-Werror"
40
- // }
41
-
42
37
configurations. all {
43
38
}
44
39
@@ -47,8 +42,8 @@ repositories {
47
42
}
48
43
49
44
dependencies {
50
- testCompile group : ' junit' , name : ' junit' , version :' 4.12'
51
- testCompile group : ' org.mockito' , name : ' mockito-core' , version :' 2.22.0'
45
+ testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
46
+ testCompile group : ' org.mockito' , name : ' mockito-core' , version : ' 2.22.0'
52
47
}
53
48
54
49
jar {
67
62
exceptionFormat " full"
68
63
}
69
64
}
70
-
71
- cobertura {
72
- coverageFormats = [' html' , ' xml' ] // coveralls plugin depends on xml format report
73
- coverageIgnoreTrivial = true // ignore getters/setters in coverage report
74
- coverageIgnoreMethodAnnotations = [" java.lang.Deprecated" ]
75
- }
Original file line number Diff line number Diff line change 1
- GROUP =com.github. starkbank
2
- VERSION_NAME =0 .0.1-SNAPSHOT
1
+ GROUP =com.starkbank
2
+ VERSION_NAME =1 .0.0
3
3
4
4
POM_URL =https://github.com/starkbank/ecdsa-java
5
5
POM_SCM_URL [email protected] :starkbank/ecdsa-java.git
Original file line number Diff line number Diff line change 1
1
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
2
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
- <groupId >com.github. starkbank</groupId >
4
+ <groupId >com.starkbank</groupId >
5
5
<artifactId >ecdsa-java</artifactId >
6
- <version >0 .0.1-SNAPSHOT </version >
6
+ <version >1 .0.0 </version >
7
7
<properties >
8
8
<maven .compiler.source>1.7</maven .compiler.source>
9
9
<maven .compiler.target>1.7</maven .compiler.target>
You can’t perform that action at this time.
0 commit comments