Skip to content

Commit

Permalink
Issue siom79#280: Test bundles added
Browse files Browse the repository at this point in the history
  • Loading branch information
miKerscher committed Jul 19, 2021
1 parent 2e61094 commit 229fbd9
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
<oldVersion>
<dependency>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-test-v1</artifactId>
<artifactId>japicmp-testbundle-v1</artifactId>
<version>${project.version}</version>
</dependency>
</oldVersion>
<newVersion>
<dependency>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-test-v1</artifactId>
<artifactId>japicmp-testbundle-v2</artifactId>
<version>${project.version}</version>
</dependency>
</newVersion>
Expand Down
23 changes: 23 additions & 0 deletions japicmp-testbase/japicmp-testbundle-v1/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-testbase</artifactId>
<version>0.15.4-SNAPSHOT</version>
</parent>

<artifactId>japicmp-testbundle-v1</artifactId>
<packaging>bundle</packaging>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.2</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package japicmp.testbundle;

/**
* TODO: Add class description!
*
* @version $Id: my.products.setup,v 1.44 2017/03/09 09:44:26 rh Exp $<br>
* (c) DE software &amp; control GmbH
*/
public class Main
{

}

23 changes: 23 additions & 0 deletions japicmp-testbase/japicmp-testbundle-v2/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?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>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-testbase</artifactId>
<version>0.15.4-SNAPSHOT</version>
</parent>

<artifactId>japicmp-testbundle-v2</artifactId>
<packaging>bundle</packaging>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.2</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package japicmp.testbundle;

/**
* TODO: Add class description!
*
* @version $Id: my.products.setup,v 1.44 2017/03/09 09:44:26 rh Exp $<br>
* (c) DE software &amp; control GmbH
*/
public class Main
{
public void foo() {

}
}

2 changes: 2 additions & 0 deletions japicmp-testbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
<module>japicmp-test-vx-client</module>
<module>japicmp-test-maven-plugin-ignoremissingartifact</module>
<module>japicmp-test-maven-plugin-packaging</module>
<module>japicmp-testbundle-v1</module>
<module>japicmp-testbundle-v2</module>
<module>japicmp-test-maven-plugin-packaging-bundle</module>
<module>japicmp-test-maven-plugin-userproperty</module>
<module>japicmp-test-maven-plugin-post-analysis-script-artifact</module>
Expand Down

0 comments on commit 229fbd9

Please sign in to comment.