Skip to content

Commit

Permalink
Cleaned up pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Aug 21, 2014
1 parent 076263a commit ca66e0e
Showing 1 changed file with 20 additions and 22 deletions.
42 changes: 20 additions & 22 deletions pom.xml
@@ -1,4 +1,5 @@
<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">
<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.jboss</groupId>
Expand All @@ -15,7 +16,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<idea.version>13.1.2</idea.version>
<forge.version>2.8.0.Final</forge.version>
<angularjs.version>2.1.1.Final</angularjs.version>
Expand Down Expand Up @@ -56,11 +57,11 @@
<artifactId>convert-api</artifactId>
<version>${forge.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>projects-api</artifactId>
<version>${forge.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>projects-api</artifactId>
<version>${forge.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>ui-api</artifactId>
Expand Down Expand Up @@ -124,7 +125,7 @@
<scope>provided</scope>
</dependency>

<!-- Test -->
<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -146,6 +147,14 @@
</resources>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.jboss.forge.furnace</groupId>
<artifactId>furnace-maven-plugin</artifactId>
Expand All @@ -161,8 +170,8 @@
<configuration>
<addonRepository>${project.build.directory}/addon-repository</addonRepository>
<addonIds>
<addonId>org.jboss.forge.addon:core,${forge.version}</addonId>
<addonId>org.jboss.forge.addon:angularjs,${angularjs.version}</addonId>
<addonId>org.jboss.forge.addon:core,${forge.version}</addonId>
<addonId>org.jboss.forge.addon:angularjs,${angularjs.version}</addonId>
</addonIds>
</configuration>
</execution>
Expand All @@ -187,23 +196,12 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>

<scm>
<connection>scm:git:git://github.com/forge/intellij-idea-plugin.git</connection>
<developerConnection>scm:git:git@github.com:forge/intellij-idea-plugin.git</developerConnection>
<url>http://github.com/forge/forge-intellij-idea-plugin</url>
<tag>forge-idea-plugin-1.0.1.Final</tag>
</scm>

</scm>
</project>

0 comments on commit ca66e0e

Please sign in to comment.