Skip to content
Snippets Groups Projects
Commit ceacd151 authored by Joe Littlejohn's avatar Joe Littlejohn
Browse files

Add more example configurations to test project

parent a9dda15f
No related branches found
No related tags found
No related merge requests found
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin-test-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin-test1</artifactId>
<version>0.1.0-SNAPSHOT</version>
<url>https://github.com/joelittlejohn/embedmongo-maven-plugin</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.4</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin</artifactId>
<version>0.1.7-SNAPSHOT</version>
<executions>
<execution>
<id>start</id>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>stop</id>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
</dependencies>
</project>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin-test-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin-test2</artifactId>
<version>0.1.0-SNAPSHOT</version>
<url>https://github.com/joelittlejohn/embedmongo-maven-plugin</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.4</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin</artifactId>
<version>0.1.7-SNAPSHOT</version>
<executions>
<execution>
<id>start</id>
<goals>
<goal>start</goal>
</goals>
<configuration>
<port>37017</port>
<version>2.1.1</version>
<databaseDirectory>.</databaseDirectory>
<logging>file</logging>
<bindIp>127.0.0.1</bindIp>
</configuration>
</execution>
<execution>
<id>stop</id>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
</dependencies>
</project>
......@@ -3,8 +3,14 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin-test-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
</parent>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmonog-maven-plugin-test</artifactId>
<artifactId>embedmongo-maven-plugin-test3</artifactId>
<version>0.1.0-SNAPSHOT</version>
<url>https://github.com/joelittlejohn/embedmongo-maven-plugin</url>
......@@ -23,7 +29,7 @@
<plugin>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin</artifactId>
<version>0.1.5-SNAPSHOT</version>
<version>0.1.7-SNAPSHOT</version>
<executions>
<execution>
<id>start</id>
......@@ -33,7 +39,8 @@
<configuration>
<port>37017</port>
<databaseDirectory>/tmp/mongotest</databaseDirectory>
<logging>file</logging>
<logging>console</logging>
<version>v2.2.0</version>
</configuration>
</execution>
<execution>
......
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.joelittlejohn.embedmongo</groupId>
<artifactId>embedmongo-maven-plugin-test-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<url>https://github.com/joelittlejohn/embedmongo-maven-plugin</url>
<modules>
<module>example1</module>
<module>example2</module>
<module>example3</module>
</modules>
</project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment