Skip to content

Commit

Permalink
Update version to 1.0.0-2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdesair committed Jul 15, 2023
1 parent 93cdbd5 commit f125556
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,5 @@ buildNumber.properties
.history
.ionide

# End of https://www.toptal.com/developers/gitignore/api/java,maven,intellij,visualstudiocode
# End of https://www.toptal.com/developers/gitignore/api/java,maven,intellij,visualstudiocode
.vscode/
21 changes: 13 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>me.desair.tus</groupId>
<artifactId>tus-java-server</artifactId>
<version>1.0.0-2.1-SNAPSHOT</version>
<version>1.0.0-2.1</version>
<packaging>jar</packaging>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down Expand Up @@ -255,7 +256,8 @@
<goal>sonar</goal>
</goals>
<configuration>
<sonar.jacoco.reportPaths>${project.build.directory}/coverage-reports/jacoco-it.exec,${project.build.directory}/coverage-reports/jacoco-ut.exec</sonar.jacoco.reportPaths>
<sonar.jacoco.reportPaths>
${project.build.directory}/coverage-reports/jacoco-it.exec,${project.build.directory}/coverage-reports/jacoco-ut.exec</sonar.jacoco.reportPaths>
</configuration>
</execution>
</executions>
Expand Down Expand Up @@ -294,8 +296,10 @@
<configuration>
<failOnServiceError>false</failOnServiceError>
<jacocoReports>
<jacocoReport>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</jacocoReport>
<jacocoReport>${project.reporting.outputDirectory}/jacoco-it/jacoco.xml</jacocoReport>
<jacocoReport>
${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</jacocoReport>
<jacocoReport>
${project.reporting.outputDirectory}/jacoco-it/jacoco.xml</jacocoReport>
</jacocoReports>
</configuration>
</execution>
Expand All @@ -316,7 +320,8 @@
<executions>
<execution>
<id>verify-style</id>
<!-- Bind to verify so it runs after package & unit tests, but before install -->
<!-- Bind to verify so it runs after package & unit tests, but
before install -->
<phase>verify</phase>
<goals>
<goal>check</goal>
Expand Down Expand Up @@ -447,4 +452,4 @@
<url>https://github.com/tomdesair/tus-java-server/tree/master</url>
</scm>

</project>
</project>

0 comments on commit f125556

Please sign in to comment.