Skip to content

Commit

Permalink
pom updated
Browse files Browse the repository at this point in the history
  • Loading branch information
nmacedo committed May 22, 2018
1 parent da31eb5 commit 1c59cb5
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 34 deletions.
63 changes: 37 additions & 26 deletions electrum/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<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>
<groupId>pt.uminho.haslab.electrum</groupId>
<artifactId>electrum</artifactId>
Expand All @@ -14,6 +13,16 @@
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<id>default-jar</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
Expand Down Expand Up @@ -60,6 +69,16 @@
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<id>default-jar</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
Expand Down Expand Up @@ -99,34 +118,28 @@
</plugins>
</build>
</profile>

<profile>
<id>dev</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>

<dependencies>
<dependency>
<groupId>com.github.vbmacher</groupId>
<artifactId>java-cup</artifactId>
<version>11b</version>
</dependency>
<profile>
<id>dev</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>com.github.vbmacher</groupId>
<artifactId>java-cup</artifactId>
<version>11b</version>
</dependency>
<dependency>
<groupId>de.jflex</groupId>
<artifactId>jflex</artifactId>
<version>1.6.0</version>
<groupId>de.jflex</groupId>
<artifactId>jflex</artifactId>
<version>1.6.0</version>
</dependency>
</dependencies>

</profile>
</dependencies>
</profile>
</profiles>


<properties>
<logback-version>1.1.7</logback-version>
</properties>

<dependencies>
<dependency>
<groupId>pt.uminho.haslab.pardinus</groupId>
Expand Down Expand Up @@ -165,6 +178,4 @@
<scope>compile</scope>
</dependency>
</dependencies>


</project>
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 1c59cb5

Please sign in to comment.