Skip to content

Commit

Permalink
build(release): removed snapshot from version
Browse files Browse the repository at this point in the history
Signed-off-by: Ruben Romero Montes <[email protected]>
  • Loading branch information
ruromero committed Dec 13, 2023
1 parent 536be6d commit 2111229
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 3 deletions.
62 changes: 62 additions & 0 deletions .flattened-pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.redhat.ecosystemappeng</groupId>
<artifactId>exhort-api-spec</artifactId>
<version>1.0.3</version>
<name>Exhort Java API</name>
<description>Red Hat Trusted Profile Analizer :: Exhort :: Java API</description>
<url>https://github.com/RHEcosystemAppEng/exhort-api-spec</url>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:RHEcosystemAppEng/exhort-api-spec.git</connection>
<developerConnection>scm:git:[email protected]:RHEcosystemAppEng/exhort-api-spec.git</developerConnection>
<tag>v1.0.0</tag>
<url>https://github.com/RHEcosystemAppEng/exhort-api-spec</url>
</scm>
<dependencies>
<dependency>
<groupId>com.github.package-url</groupId>
<artifactId>packageurl-java</artifactId>
<version>1.4.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.15.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.15.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.15.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>2.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The packages are published to the GitHub maven repository. Make sure to add it t
<dependency>
<groupId>com.redhat.ecosystemappeng</groupId>
<artifactId>exhort-api</artifactId>
<version>1.0.3-SNAPSHOT</version>
<version>1.0.3</version>
</dependency>
```

Expand All @@ -36,5 +36,5 @@ echo "@RHEcosystemAppEng:registry=https://npm.pkg.github.com" >> .npmrc
Then, add it to your project as follows:

```bash
npm install @RHEcosystemAppEng/[email protected]-SNAPSHOT
npm install @RHEcosystemAppEng/[email protected]
```
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.redhat.ecosystemappeng</groupId>
<artifactId>exhort-api-spec</artifactId>
<version>1.0.3-SNAPSHOT</version>
<version>1.0.3</version>
<name>Exhort Java API</name>
<description>Red Hat Trusted Profile Analizer :: Exhort :: Java API</description>
<url>https://github.com/RHEcosystemAppEng/exhort-api-spec</url>
Expand Down

0 comments on commit 2111229

Please sign in to comment.