Version 1.0.2
This commit is contained in:
parent
cd4d86969f
commit
705a8d9b12
6 changed files with 6 additions and 4 deletions
1
examples/bld/.idea/misc.xml
generated
1
examples/bld/.idea/misc.xml
generated
|
@ -12,6 +12,7 @@
|
|||
<option value="$PROJECT_DIR$/../../../../java/bld-checkstyle/config/pmd.xml" />
|
||||
<option value="$PROJECT_DIR$/../../../../java/bld-exec/config/pmd.xml" />
|
||||
<option value="$PROJECT_DIR$/../../../../java/bld-testng/config/pmd.xml" />
|
||||
<option value="$PROJECT_DIR$/../../../../java/bld-generated-version/config/pmd.xml" />
|
||||
</list>
|
||||
</option>
|
||||
<option name="skipTestSources" value="false" />
|
||||
|
|
|
@ -25,7 +25,7 @@ public class CryptoPriceExampleBuild extends BaseProject {
|
|||
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);
|
||||
|
||||
scope(compile)
|
||||
.include(dependency("net.thauvin.erik", "cryptoprice", version(1, 0, 2, "SNAPSHOT")))
|
||||
.include(dependency("net.thauvin.erik", "cryptoprice", version(1, 0, 2)))
|
||||
.include(dependency("org.json", "json", "20231013"));
|
||||
}
|
||||
|
||||
|
|
1
examples/gradle/.idea/misc.xml
generated
1
examples/gradle/.idea/misc.xml
generated
|
@ -10,6 +10,7 @@
|
|||
<option value="$PROJECT_DIR$/../../../../java/bld-checkstyle/config/pmd.xml" />
|
||||
<option value="$PROJECT_DIR$/../../../../java/bld-exec/config/pmd.xml" />
|
||||
<option value="$PROJECT_DIR$/../../../../java/bld-testng/config/pmd.xml" />
|
||||
<option value="$PROJECT_DIR$/../../../../java/bld-generated-version/config/pmd.xml" />
|
||||
</list>
|
||||
</option>
|
||||
<option name="skipTestSources" value="false" />
|
||||
|
|
|
@ -15,7 +15,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation("net.thauvin.erik:cryptoprice:1.0.1-SNAPSHOT")
|
||||
implementation("net.thauvin.erik:cryptoprice:1.0.2")
|
||||
implementation("org.json:json:20231013")
|
||||
}
|
||||
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>net.thauvin.erik</groupId>
|
||||
<artifactId>cryptoprice</artifactId>
|
||||
<version>1.0.2-SNAPSHOT</version>
|
||||
<version>1.0.2</version>
|
||||
<name>cryptoprice</name>
|
||||
<description>Retrieve cryptocurrencies prices</description>
|
||||
<url>https://github.com/ethauvin/cryptoprice</url>
|
||||
|
|
|
@ -27,7 +27,7 @@ public class CryptoPriceBuild extends Project {
|
|||
public CryptoPriceBuild() {
|
||||
pkg = "net.thauvin.erik.crypto";
|
||||
name = "cryptoprice";
|
||||
version = version(1, 0, 2, "SNAPSHOT");
|
||||
version = version(1, 0, 2);
|
||||
|
||||
mainClass = "net.thauvin.erik.crypto.CryptoPrice";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue