Skip to content

Commit

Permalink
Merge branch 'refs/heads/main' into move-to-openrewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbethancourt committed Nov 17, 2024
2 parents f0d8411 + 02daec4 commit 807337c
Show file tree
Hide file tree
Showing 14 changed files with 87 additions and 184 deletions.
2 changes: 1 addition & 1 deletion change-proneness-ranker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
</parent>

<groupId>org.hjug.refactorfirst.changepronenessranker</groupId>
Expand Down
2 changes: 1 addition & 1 deletion circular-reference-detector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
</parent>

<groupId>org.hjug.refactorfirst.circularreferencedetector</groupId>
Expand Down
2 changes: 1 addition & 1 deletion cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
</parent>

<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion cost-benefit-calculator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
</parent>

<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>
Expand Down
2 changes: 1 addition & 1 deletion coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
</parent>

<artifactId>coverage</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions effort-ranker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
</parent>

<groupId>org.hjug.refactorfirst.effortranker</groupId>
Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>org.hjug.refactorfirst.testresources</groupId>
<artifactId>test-resources</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions graph-data-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
</parent>

<groupId>org.hjug.refactorfirst.graphdatagenerator</groupId>
Expand All @@ -15,7 +15,7 @@
<dependency>
<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>
<artifactId>cost-benefit-calculator</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
44 changes: 25 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
<packaging>pom</packaging>

<url>https://github.com/refactorfirst/RefactorFirst</url>
Expand Down Expand Up @@ -69,7 +69,7 @@
<sonar.organization>jimbethancourt-github</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>

<maven.core.version>3.9.4</maven.core.version>
<maven.core.version>3.9.9</maven.core.version>
</properties>

<modules>
Expand Down Expand Up @@ -140,7 +140,7 @@
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>6.7.0.202309050840-r</version>
<version>6.10.0.202406032230-r</version>
<scope>compile</scope>
</dependency>

Expand Down Expand Up @@ -183,7 +183,6 @@


<dependencies>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
Expand Down Expand Up @@ -338,21 +337,6 @@
</executions>
-->
</plugin>
<!-- <plugin>-->
<!-- <groupId>org.owasp</groupId>-->
<!-- <artifactId>dependency-check-maven</artifactId>-->
<!-- <version>6.1.0</version>-->
<!-- <configuration>-->
<!-- <failBuildOnCVSS>8.0</failBuildOnCVSS>-->
<!-- </configuration>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <goals>-->
<!-- <goal>check</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<!--TODO: Add the SNYK plugin-->
<!-- https://github.com/snyk/snyk-maven-plugin -->

Expand Down Expand Up @@ -395,6 +379,28 @@


<profiles>
<profile>
<id>local</id>
<build>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>6.1.0</version>
<configuration>
<failBuildOnCVSS>8.0</failBuildOnCVSS>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>snapshot-release</id>
<build>
Expand Down
50 changes: 15 additions & 35 deletions refactor-first-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.6.3-SNAPSHOT</version>
</parent>

<groupId>org.hjug.refactorfirst.plugin</groupId>
Expand All @@ -22,28 +22,6 @@
<groupId>org.hjug.refactorfirst.report</groupId>
<artifactId>report</artifactId>
</dependency>
<!-- Doxia -->
<!-- Needed since maven-reporting-impl brings in Struts 1.3.8 jars that have CVSS > 8 -->
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-sink-api</artifactId>
<version>2.0.0-M6</version>
</dependency>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-decoration-model</artifactId>
<version>2.0.0-M6</version>
</dependency>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-core</artifactId>
<version>2.0.0-M7</version>
</dependency>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-site-renderer</artifactId>
<version>2.0.0-M11</version>
</dependency>

<!-- Maven Reporting -->
<dependency>
Expand All @@ -52,35 +30,37 @@
<version>${maven.core.version}</version>
</dependency>

<!-- Maven Reporting -->
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-impl</artifactId>
<version>3.2.0</version>
<version>4.0.0</version>
<exclusions>
<!-- Remediates xz-1.9.jar: CVE-2022-1271 -->
<!-- Unused transitive dependency -->
<exclusion>
<groupId>org.tukaani</groupId>
<artifactId>xz</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-api</artifactId>
<version>3.1.1</version>
<version>4.0.0</version>
</dependency>

<!-- plugin API and plugin-tools -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.5.2</version>
<version>3.9.9</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.6.1</version>
<version>3.15.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-utils</artifactId>
<version>3.3.3</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand All @@ -92,12 +72,12 @@
<plugins>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<version>3.1.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.9.0</version>
<version>3.15.1</version>
<configuration>
<goalPrefix>refactor-first</goalPrefix>
</configuration>
Expand Down
Loading

0 comments on commit 807337c

Please sign in to comment.