Skip to content

Commit

Permalink
build: version 0.0.14 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan-Zollinger committed Jul 19, 2024
1 parent e668638 commit efa3a23
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Threshr is available to jvm projects via [maven central].
<dependency>
<groupId>com.graqr</groupId>
<artifactId>threshr</artifactId>
<version>0.0.14-SNAPSHOT</version>
<version>0.0.14</version>
</dependency>
```

Expand All @@ -64,14 +64,14 @@ Threshr is available to jvm projects via [maven central].
<details><summary>Gradle</summary>

```groovy
implementation group: 'com.graqr', name: 'threshr', version: '0.0.14-SNAPSHOT'
implementation group: 'com.graqr', name: 'threshr', version: '0.0.14'
```
</details>

<details><summary>Gradle Kotlin</summary>

```kotlin
implementation("com.graqr:threshr:0.0.14-SNAPSHOT")
implementation("com.graqr:threshr:0.0.14")
```
</details>

Expand Down
32 changes: 23 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,36 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.graqr</groupId>
<artifactId>threshr</artifactId>
<version>0.0.14-SNAPSHOT</version>
<version>0.0.14</version>
<packaging>${packaging}</packaging>

<parent>
<groupId>io.micronaut.platform</groupId>
<artifactId>micronaut-parent</artifactId>
<version>4.5.0</version>
</parent>
<name>Threshr</name>
<description>Grocery JDK for Target's grocery API</description>
<url>https://github.com/graqr/threshr</url>
<licenses>
<license>
<name>GNU General Public License v3.0</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
</license>
</licenses>
<scm>
<url>scm:[email protected]:graqr/threshr.git</url>
<connection>scm:[email protected]:graqr/threshr.git</connection>
<developerConnection>scm:[email protected]:graqr/threshr.git</developerConnection>
</scm>
<developers>
<developer>
<id>jonathan-zollinger</id>
<name>Jonathan Zollinger</name>
<timezone>Mountain Standard Time</timezone>
<url>https://www.linkedin.com/in/jonathan-zollinger/</url>
</developer>
</developers>

<properties>
<packaging>jar</packaging>
Expand All @@ -24,14 +46,6 @@
<sonar.projectKey>Graqr_Threshr</sonar.projectKey>
</properties>

<developers>
<developer>
<id>jonathan-zollinger</id>
<name>Jonathan Zollinger</name>
<timezone>Mountain Standard Time</timezone>
<url>https://www.linkedin.com/in/jonathan-zollinger/</url>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
Expand Down

0 comments on commit efa3a23

Please sign in to comment.