Skip to content

Commit

Permalink
preparation for release 05.00.01-SRU
Browse files Browse the repository at this point in the history
Fixed the pitest pattern
removed the distribution repo definitions, because jitpack is doing it.
  • Loading branch information
svenruppert committed Mar 8, 2024
1 parent e94f3f7 commit c878959
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 17 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[//]: # ()
[//]: # ([![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.rapidpm/rapidpm-dependencies/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.rapidpm/rapidpm-dependencies))
[![](https://jitpack.io/v/svenruppert/dependencies.svg)](https://jitpack.io/#svenruppert/dependencies)

[//]: # ()
[//]: # ([![Codacy Badge](https://api.codacy.com/project/badge/Grade/c1133e6bd62d49d39c79c5b58d31c661)](https://app.codacy.com/app/sven-ruppert/rapidpm-dependencies?utm_source=github.com&utm_medium=referral&utm_content=RapidPM/rapidpm-dependencies&utm_campaign=badger))
Expand All @@ -17,6 +18,14 @@


## Version's
### 05.00.01-SRU
Fixed the pitest pattern
<pitest-prod-classes>com.svenruppert.*</pitest-prod-classes>
<pitest-test-classes>junit.com.svenruppert.*</pitest-test-classes>

removed the distribution repo definitions, because jitpack is doing it.


### 05.00.00-SRU - BREAKING CHANGE
With version 5.x I will switch the namespace from org.rapidpm to com.svenruppert
This has to do with organisational requirements on my side.
Expand Down
34 changes: 17 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<artifactId>dependencies</artifactId>
<packaging>pom</packaging>

<version>05.00.00-SRU</version>
<version>05.00.01-SRU</version>

<inceptionYear>2013</inceptionYear>
<organization>
Expand Down Expand Up @@ -73,9 +73,9 @@

<properties>
<!-- <deploy-repo-url>https://repo.maven.apache.org/maven2/</deploy-repo-url>-->
<deploy-repo-url>https://maven.pkg.github.com/svenruppert/dependencies/</deploy-repo-url>
<!-- <deploy-repo-url>https://maven.pkg.github.com/svenruppert/dependencies/</deploy-repo-url>-->
<!-- <deploy-repo-snapshots-url>https://repo.maven.apache.org/maven2/</deploy-repo-snapshots-url>-->
<deploy-repo-snapshots-url>https://maven.pkg.github.com/svenruppert/dependencies/</deploy-repo-snapshots-url>
<!-- <deploy-repo-snapshots-url>https://maven.pkg.github.com/svenruppert/dependencies/</deploy-repo-snapshots-url>-->
<activateJavaOnly>false</activateJavaOnly>
<jdk.version>21</jdk.version>
<!--technical-->
Expand Down Expand Up @@ -103,8 +103,8 @@

<jacoco.version>0.8.10</jacoco.version>
<pitest.version>1.15.8</pitest.version>
<pitest-prod-classes>org.rapidpm.*</pitest-prod-classes>
<pitest-test-classes>junit.org.rapidpm*</pitest-test-classes>
<pitest-prod-classes>com.svenruppert.*</pitest-prod-classes>
<pitest-test-classes>junit.com.svenruppert.*</pitest-test-classes>

<!-- <jmh.version>1.26</jmh.version>-->

Expand All @@ -119,18 +119,18 @@
<junit-platform-maven-plugin.timeout>300</junit-platform-maven-plugin.timeout>
</properties>

<distributionManagement>
<repository>
<id>deploy-repo-maven</id>
<name>deploy-repo-maven</name>
<url>${deploy-repo-url}</url>
</repository>
<snapshotRepository>
<id>deploy-repo-maven-snapshots</id>
<name>deploy-repo-maven-snapshots</name>
<url>${deploy-repo-snapshots-url}</url>
</snapshotRepository>
</distributionManagement>
<!-- <distributionManagement>-->
<!-- <repository>-->
<!-- <id>deploy-repo-maven</id>-->
<!-- <name>deploy-repo-maven</name>-->
<!-- <url>${deploy-repo-url}</url>-->
<!-- </repository>-->
<!-- <snapshotRepository>-->
<!-- <id>deploy-repo-maven-snapshots</id>-->
<!-- <name>deploy-repo-maven-snapshots</name>-->
<!-- <url>${deploy-repo-snapshots-url}</url>-->
<!-- </snapshotRepository>-->
<!-- </distributionManagement>-->

<repositories>
<repository>
Expand Down

0 comments on commit c878959

Please sign in to comment.