Skip to content

Commit 4d191d7

Browse files
Version 1.0.0
1 parent 9f8b982 commit 4d191d7

File tree

4 files changed

+9
-20
lines changed

4 files changed

+9
-20
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ In pom.xml:
1111

1212
```xml
1313
<dependency>
14-
<groupId>com.github.starkbank</groupId>
14+
<groupId>com.starkbank</groupId>
1515
<artifactId>starkbank-ecdsa</artifactId>
16-
<version>0.0.1-SNAPSHOT</version>
16+
<version>1.0.0</version>
1717
</dependency>
1818
```
1919

build.gradle

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ buildscript {
1818
plugins {
1919
id 'java'
2020
id 'maven'
21-
id 'net.saliman.cobertura' version '3.0.0'
21+
id 'maven-publish'
2222
id 'com.github.kt3k.coveralls' version '2.8.2'
2323
}
2424

@@ -29,16 +29,11 @@ group = GROUP
2929
version = VERSION_NAME
3030

3131

32-
3332
tasks.withType(JavaCompile) {
3433
options.compilerArgs << "-Xlint:all" << "-Xlint:-options" << "-Xlint:-processing"
3534
options.encoding = 'UTF-8'
3635
}
3736

38-
//compileJava {
39-
// options.compilerArgs << "-Werror"
40-
//}
41-
4237
configurations.all {
4338
}
4439

@@ -47,8 +42,8 @@ repositories {
4742
}
4843

4944
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'
5247
}
5348

5449
jar {
@@ -67,9 +62,3 @@ test {
6762
exceptionFormat "full"
6863
}
6964
}
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-
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
GROUP=com.github.starkbank
2-
VERSION_NAME=0.0.1-SNAPSHOT
1+
GROUP=com.starkbank
2+
VERSION_NAME=1.0.0
33

44
POM_URL=https://github.com/starkbank/ecdsa-java
55
POM_SCM_URL[email protected]:starkbank/ecdsa-java.git

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.github.starkbank</groupId>
4+
<groupId>com.starkbank</groupId>
55
<artifactId>ecdsa-java</artifactId>
6-
<version>0.0.1-SNAPSHOT</version>
6+
<version>1.0.0</version>
77
<properties>
88
<maven.compiler.source>1.7</maven.compiler.source>
99
<maven.compiler.target>1.7</maven.compiler.target>

0 commit comments

Comments
 (0)