Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 26 additions & 35 deletions change-proneness-ranker/pom.xml
Original file line number Diff line number Diff line change
@@ -1,37 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>

<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.3.1-SNAPSHOT</version>
</parent>

<groupId>org.hjug.refactorfirst.changepronenessranker</groupId>
<artifactId>change-proneness-ranker</artifactId>

<build>
<testResources>
<testResource>
<directory>${project.basedir}/src/test/resources</directory>
</testResource>
</testResources>
</build>

<dependencies>

<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
</dependency>

<dependency>
<groupId>org.hjug.refactorfirst.testresources</groupId>
<artifactId>test-resources</artifactId>
</dependency>


</dependencies>

</project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.3.1-SNAPSHOT</version>
</parent>
<groupId>org.hjug.refactorfirst.changepronenessranker</groupId>
<artifactId>change-proneness-ranker</artifactId>
<dependencies>
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
</dependency>
<dependency>
<groupId>org.hjug.refactorfirst.testresources</groupId>
<artifactId>test-resources</artifactId>
</dependency>
</dependencies>
<build>
<testResources>
<testResource>
<directory>${project.basedir}/src/test/resources</directory>
</testResource>
</testResources>
</build>
</project>
53 changes: 23 additions & 30 deletions cost-benefit-calculator/pom.xml
Original file line number Diff line number Diff line change
@@ -1,32 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>

<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.3.1-SNAPSHOT</version>
</parent>

<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>
<artifactId>cost-benefit-calculator</artifactId>

<dependencies>
<dependency>
<groupId>org.hjug.refactorfirst.changepronenessranker</groupId>
<artifactId>change-proneness-ranker</artifactId>
</dependency>

<dependency>
<groupId>org.hjug.refactorfirst.effortranker</groupId>
<artifactId>effort-ranker</artifactId>
</dependency>

<dependency>
<groupId>org.hjug.refactorfirst.testresources</groupId>
<artifactId>test-resources</artifactId>
</dependency>

</dependencies>

</project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.3.1-SNAPSHOT</version>
</parent>
<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>
<artifactId>cost-benefit-calculator</artifactId>
<dependencies>
<dependency>
<groupId>org.hjug.refactorfirst.changepronenessranker</groupId>
<artifactId>change-proneness-ranker</artifactId>
</dependency>
<dependency>
<groupId>org.hjug.refactorfirst.effortranker</groupId>
<artifactId>effort-ranker</artifactId>
</dependency>
<dependency>
<groupId>org.hjug.refactorfirst.testresources</groupId>
<artifactId>test-resources</artifactId>
</dependency>
</dependencies>
</project>
117 changes: 53 additions & 64 deletions coverage/pom.xml
Original file line number Diff line number Diff line change
@@ -1,66 +1,55 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>

<!-- From https://cylab.be/blog/97/compute-code-coverage-for-a-multi-module-maven-project-with-jacoco -->

<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.3.1-SNAPSHOT</version>
</parent>

<artifactId>coverage</artifactId>

<description>Compute aggregated test code coverage</description>

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<dependencies>
<dependency>
<groupId>org.hjug.refactorfirst.changepronenessranker</groupId>
<artifactId>change-proneness-ranker</artifactId>
</dependency>

<dependency>
<groupId>org.hjug.refactorfirst.effortranker</groupId>
<artifactId>effort-ranker</artifactId>
</dependency>

<dependency>
<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>
<artifactId>cost-benefit-calculator</artifactId>
</dependency>

<dependency>
<groupId>org.hjug.refactorfirst.graphdatagenerator</groupId>
<artifactId>graph-data-generator</artifactId>
</dependency>

<dependency>
<groupId>org.hjug.refactorfirst.plugin</groupId>
<artifactId>refactor-first-maven-plugin</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.6</version>
<executions>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
<modelVersion>4.0.0</modelVersion>
<!-- From https://cylab.be/blog/97/compute-code-coverage-for-a-multi-module-maven-project-with-jacoco -->
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.3.1-SNAPSHOT</version>
</parent>
<artifactId>coverage</artifactId>
<description>Compute aggregated test code coverage</description>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<dependencies>
<dependency>
<groupId>org.hjug.refactorfirst.changepronenessranker</groupId>
<artifactId>change-proneness-ranker</artifactId>
</dependency>
<dependency>
<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>
<artifactId>cost-benefit-calculator</artifactId>
</dependency>
<dependency>
<groupId>org.hjug.refactorfirst.effortranker</groupId>
<artifactId>effort-ranker</artifactId>
</dependency>
<dependency>
<groupId>org.hjug.refactorfirst.graphdatagenerator</groupId>
<artifactId>graph-data-generator</artifactId>
</dependency>
<dependency>
<groupId>org.hjug.refactorfirst.plugin</groupId>
<artifactId>refactor-first-maven-plugin</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.6</version>
<executions>
<execution>
<id>report-aggregate</id>
<goals>
<goal>report-aggregate</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
60 changes: 26 additions & 34 deletions effort-ranker/pom.xml
Original file line number Diff line number Diff line change
@@ -1,36 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>

<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.3.1-SNAPSHOT</version>
</parent>

<groupId>org.hjug.refactorfirst.effortranker</groupId>
<artifactId>effort-ranker</artifactId>

<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
</dependency>

<dependency>
<groupId>org.hjug.refactorfirst.testresources</groupId>
<artifactId>test-resources</artifactId>
<version>0.3.1-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<type>jar</type>
<version>1.7.2</version>
</dependency>

</dependencies>


</project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.3.1-SNAPSHOT</version>
</parent>
<groupId>org.hjug.refactorfirst.effortranker</groupId>
<artifactId>effort-ranker</artifactId>
<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
</dependency>
<dependency>
<groupId>org.hjug.refactorfirst.testresources</groupId>
<artifactId>test-resources</artifactId>
<version>0.3.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.2</version>
<type>jar</type>
</dependency>
</dependencies>
</project>
36 changes: 16 additions & 20 deletions graph-data-generator/pom.xml
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>

<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.3.1-SNAPSHOT</version>
</parent>

<groupId>org.hjug.refactorfirst.graphdatagenerator</groupId>
<artifactId>graph-data-generator</artifactId>

<dependencies>
<dependency>
<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>
<artifactId>cost-benefit-calculator</artifactId>
<version>0.3.1-SNAPSHOT</version>
</dependency>
</dependencies>

</project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.hjug.refactorfirst</groupId>
<artifactId>refactor-first</artifactId>
<version>0.3.1-SNAPSHOT</version>
</parent>
<groupId>org.hjug.refactorfirst.graphdatagenerator</groupId>
<artifactId>graph-data-generator</artifactId>
<dependencies>
<dependency>
<groupId>org.hjug.refactorfirst.costbenefitcalculator</groupId>
<artifactId>cost-benefit-calculator</artifactId>
<version>0.3.1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Loading