Created
March 3, 2023 16:20
-
-
Save Bludwarf/bf61244c7f691d164a9e8d6dd1c94c34 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<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>fr.bludwarf</groupId> | |
<artifactId>commons</artifactId> | |
<version>1.0-DEV</version> | |
<name>Librairies communes</name> | |
<description>Librairies communes de Bludwarf</description> | |
<properties> | |
<sourceEncoding>UTF-8</sourceEncoding> | |
</properties> | |
<organization> | |
<name>BludCorp</name> | |
<url>https://code.google.com/u/bludwarf/</url> | |
</organization> | |
<dependencies> | |
<dependency> | |
<groupId>commons-configuration</groupId> | |
<artifactId>commons-configuration</artifactId> | |
<version>1.8</version> | |
<type>jar</type> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-io</artifactId> | |
<version>1.3.2</version> | |
<type>jar</type> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.8.2</version> | |
</dependency> | |
<dependency> | |
<groupId>log4j</groupId> | |
<artifactId>log4j</artifactId> | |
<version>1.2.14</version> | |
<type>jar</type> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.simpleframework</groupId> | |
<artifactId>simple-xml</artifactId> | |
<version>2.7</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-javadoc-plugin</artifactId> | |
<version>2.9.1</version> | |
<configuration> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<reporting> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-javadoc-plugin</artifactId> | |
<version>2.9.1</version> | |
<configuration> | |
</configuration> | |
</plugin> | |
</plugins> | |
</reporting> | |
<!-- https://code.google.com/p/peter-lavalle/wiki/MavenOnDropBox --> | |
<!-- Pour créer un repo Maven : https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide --> | |
<!-- Voir Skywarrior:pom.xml pour un exemple complet --> | |
<distributionManagement> | |
<repository> | |
<id>dropbox.repo</id> | |
<url>file:///D:/Dropbox/Public/mvn-repository</url> | |
</repository> | |
</distributionManagement> | |
</project> |
This file contains hidden or 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
<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>fr.bludwarf</groupId> | |
<artifactId>skywarrior</artifactId> | |
<version>1.0</version> | |
<name>SkyWarrior</name> | |
<description>Simulateur de parties SkyWar</description> | |
<!-- | |
On peut aussi placer ce repository dans le .m2/settings.xml en local : | |
<settings> | |
<mirrors> | |
<mirror> | |
<id>dropbox</id> | |
<url>https://dl.dropboxusercontent.com/u/34838159/mvn-repository/</url> | |
<mirrorOf>*</mirrorOf> | |
</mirror> | |
</mirrors> | |
</settings> | |
Ce qui est absolument équivalent :) (après 3H de recherches le 9 jan 2014 oufff !!!) | |
--> | |
<repositories> | |
<repository> | |
<id>dropbox</id> | |
<url>https://dl.dropboxusercontent.com/u/34838159/mvn-repository/</url> | |
</repository> | |
</repositories> | |
<dependencies> | |
<dependency> | |
<groupId>fr.bludwarf</groupId> | |
<artifactId>commons</artifactId> | |
<version>1.0</version> | |
</dependency> | |
</dependencies> | |
</project> |
This file contains hidden or 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
<settings> | |
<localRepository>D:\.m2\repository</localRepository> | |
<mirrors> | |
<!-- Dropbox --> | |
<mirror> | |
<id>dropbox</id> | |
<url>https://dl.dropboxusercontent.com/u/34838159/mvn-repository/</url> | |
<mirrorOf>*</mirrorOf> | |
</mirror> | |
</mirrors> | |
</settings> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment