-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'c2c8cc49e79ced6770c7082956474f5bd7209015'
- Loading branch information
Showing
13 changed files
with
189 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,29 @@ | |
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>choco</groupId> | ||
<groupId>org.chocosolver</groupId> | ||
<artifactId>choco-gui</artifactId> | ||
<version>3.2.2-SNAPSHOT</version> | ||
<version>3.3.0</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>A GUI for Choco3</name> | ||
<url>https://github.com/chocoteam/choco-gui</url> | ||
|
||
<description>A Graphical User Interface to plug on Choco 3. | ||
</description> | ||
<licenses> | ||
<license> | ||
<name>BSD 3-Clause License</name> | ||
<url>http://opensource.org/licenses/BSD-3-Clause</url> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<developer> | ||
<name>Charles Prud'homme</name> | ||
<email>[email protected]</email> | ||
<organization>TASC, INRIA Rennes, LINA CNRS UMR 6241</organization> | ||
<organizationUrl>http://www.emn.fr/z-info/ppc/</organizationUrl> | ||
</developer> | ||
</developers> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
@@ -20,11 +35,16 @@ | |
<developerConnection>scm:git:[email protected]:chocoteam/choco-gui.git</developerConnection> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<prerequisites> | ||
<maven>3.2.3</maven> | ||
</prerequisites> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>choco</groupId> | ||
<groupId>org.choco-solver</groupId> | ||
<artifactId>choco-solver</artifactId> | ||
<version>3.2.1</version> | ||
<version>3.3.0</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
|
@@ -42,69 +62,95 @@ | |
|
||
<distributionManagement> | ||
<repository> | ||
<uniqueVersion>false</uniqueVersion> | ||
<id>choco-releases</id> | ||
<name>Private Maven Repository</name> | ||
<url>file:///Volumes/choco-repo/publish/mvn/repository</url> | ||
<layout>default</layout> | ||
<id>sonatype</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> | ||
</repository> | ||
<snapshotRepository> | ||
<uniqueVersion>true</uniqueVersion> | ||
<id>choco-releases</id> | ||
<name>Private Maven Repository</name> | ||
<url>file:///Volumes/choco-repo/publish/mvn/repository</url> | ||
<id>sonatype-snapshots</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
<layout>default</layout> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
<repositories> | ||
<repository> | ||
<id>choco.repo</id> | ||
<url>http://www.emn.fr/z-info/choco-repo/mvn/repository/</url> | ||
</repository> | ||
</repositories> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
<source>1.8</source> | ||
<target>1.8</target> | ||
<encoding>ISO-8859-1</encoding> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>2.3</version> | ||
<groupId>org.bsc.maven</groupId> | ||
<artifactId>maven-processor-plugin</artifactId> | ||
<version>3.1.0-beta1</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<id>process</id> | ||
<goals> | ||
<goal>shade</goal> | ||
<goal>process</goal> | ||
</goals> | ||
<phase>generate-sources</phase> | ||
<configuration> | ||
<minimizeJar>false</minimizeJar> | ||
<artifactSet> | ||
<excludes> | ||
<exclude>org.testng:testng</exclude> | ||
<exclude>choco:choco-solver</exclude> | ||
<exclude>jgrapht:jgrapht</exclude> | ||
<exclude>dk.brics:automaton</exclude> | ||
<exclude>org.easymock:easymock</exclude> | ||
<!--<exclude>net.sf.trove4j:trove4j</exclude> INCLUDED because of THash being excluded with shade:minimize--> | ||
<exclude>org.slf4j:slf4j-api</exclude> | ||
<exclude>ch.qos.logback:logback-core</exclude> | ||
<exclude>ch.qos.logback:logback-classic</exclude> | ||
</excludes> | ||
</artifactSet> | ||
<options> | ||
<myoption>TRUE</myoption> | ||
</options> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.4</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.5</version> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>deploy</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.10.1</version> | ||
<configuration> | ||
<doctitle>${project.groupId}-${project.artifactId} ${project.version} API</doctitle> | ||
<windowtitle>${project.groupId}-${project.artifactId} ${project.version} API</windowtitle> | ||
<!--<quiet />--> | ||
<additionalparam>-Xdoclint:none</additionalparam> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<phase>deploy</phase> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.