Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daltonfm-stark committed Apr 22, 2020
1 parent 9f8b982 commit 4d191d7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 20 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ In pom.xml:

```xml
<dependency>
<groupId>com.github.starkbank</groupId>
<groupId>com.starkbank</groupId>
<artifactId>starkbank-ecdsa</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
</dependency>
```

Expand Down
17 changes: 3 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ buildscript {
plugins {
id 'java'
id 'maven'
id 'net.saliman.cobertura' version '3.0.0'
id 'maven-publish'
id 'com.github.kt3k.coveralls' version '2.8.2'
}

Expand All @@ -29,16 +29,11 @@ group = GROUP
version = VERSION_NAME



tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:all" << "-Xlint:-options" << "-Xlint:-processing"
options.encoding = 'UTF-8'
}

//compileJava {
// options.compilerArgs << "-Werror"
//}

configurations.all {
}

Expand All @@ -47,8 +42,8 @@ repositories {
}

dependencies {
testCompile group: 'junit', name: 'junit', version:'4.12'
testCompile group: 'org.mockito', name: 'mockito-core', version:'2.22.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.22.0'
}

jar {
Expand All @@ -67,9 +62,3 @@ test {
exceptionFormat "full"
}
}

cobertura {
coverageFormats = ['html', 'xml'] // coveralls plugin depends on xml format report
coverageIgnoreTrivial = true // ignore getters/setters in coverage report
coverageIgnoreMethodAnnotations = ["java.lang.Deprecated"]
}
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.github.starkbank
VERSION_NAME=0.0.1-SNAPSHOT
GROUP=com.starkbank
VERSION_NAME=1.0.0

POM_URL=https://github.com/starkbank/ecdsa-java
POM_SCM_URL[email protected]:starkbank/ecdsa-java.git
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.starkbank</groupId>
<groupId>com.starkbank</groupId>
<artifactId>ecdsa-java</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
Expand Down

0 comments on commit 4d191d7

Please sign in to comment.