Skip to content

Commit

Permalink
Fix broken pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil Forslund committed May 26, 2016
1 parent 86c1b99 commit 86cd2cb
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions plugins/pom.xml
Expand Up @@ -17,4 +17,39 @@
the License.
-->
<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.speedment</groupId>
<artifactId>speedment</artifactId>
<version>2.4.0-SNAPSHOT</version>
</parent>

<groupId>com.speedment.plugins</groupId>
<artifactId>plugins</artifactId>
<version>1.0.0-SNAPSHOT</version>

<packaging>pom</packaging>

<name>Speedment - Plugins</name>
<description>
A collection of plugins for Speedment that can be used to enhance things
like code generation and streaming with new functionality.
</description>

<modules>
<module>json-stream</module>
<module>spring-generator</module>
</modules>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.speedment</groupId>
<artifactId>runtime</artifactId>
<version>${speedment.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>

0 comments on commit 86cd2cb

Please sign in to comment.