Skip to content

Commit

Permalink
Adding maven plugin module
Browse files Browse the repository at this point in the history
  • Loading branch information
xdevroey committed Sep 6, 2018
1 parent 9be1311 commit c0b5ba3
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
23 changes: 23 additions & 0 deletions botsing-maven/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">
<parent>
<artifactId>botsing</artifactId>
<groupId>eu.stamp-project</groupId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>botsing-maven</artifactId>
<description>The maven plugin for crash reproduction using botsing.</description>

<dependencies>
<dependency>
<groupId>eu.stamp-project</groupId>
<artifactId>botsing-reproduction</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
8 changes: 5 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
<groupId>eu.stamp-project</groupId>
<artifactId>botsing</artifactId>
<version>0.0.1-SNAPSHOT</version>
<modules>
<module>botsing-reproduction</module>
</modules>
<packaging>pom</packaging>

<name>botsing</name>
Expand Down Expand Up @@ -245,4 +242,9 @@
</plugins>
</build>

<modules>
<module>botsing-reproduction</module>
<module>botsing-maven</module>
</modules>

</project>

0 comments on commit c0b5ba3

Please sign in to comment.