|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>java-cloudfiles</groupId> |
| 6 | + <artifactId>java-cloudfiles</artifactId> |
| 7 | + <version>1.3</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <name>desktop</name> |
| 11 | + <url>http://maven.apache.org</url> |
| 12 | + |
| 13 | + <properties> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + </properties> |
| 16 | + |
| 17 | + <repositories> |
| 18 | + <repository> |
| 19 | + <id>Sonatype repository</id> |
| 20 | + <name>Sonatype's Maven repository</name> |
| 21 | + <url>http://oss.sonatype.org/content/groups/public</url> |
| 22 | + </repository> |
| 23 | + <repository> |
| 24 | + <id>Sonatype RSO</id> |
| 25 | + <name>Sonatype's Forge repository</name> |
| 26 | + <url>https://repository.sonatype.org/content/groups/forge</url> |
| 27 | + </repository> |
| 28 | + |
| 29 | + <repository> |
| 30 | + <id>mvn-public</id> |
| 31 | + <name>MVNRepository</name> |
| 32 | + <url>http://mvnrepository.com</url> |
| 33 | + </repository> |
| 34 | + <repository> |
| 35 | + <id>ast-server2</id> |
| 36 | + <name>ast-server2-releases</name> |
| 37 | + <url>http://ast2-deim.urv.cat/artifactory/ast-internal-repository</url> |
| 38 | + </repository> |
| 39 | + </repositories> |
| 40 | + |
| 41 | + <dependencies> |
| 42 | + <dependency> |
| 43 | + <groupId>junit</groupId> |
| 44 | + <artifactId>junit</artifactId> |
| 45 | + <version>4.11</version> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <!-- Apache log4j --> |
| 49 | + <dependency> |
| 50 | + <groupId>log4j</groupId> |
| 51 | + <artifactId>log4j</artifactId> |
| 52 | + <version>1.2.16</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>log4j</groupId> |
| 56 | + <artifactId>apache-log4j-extras</artifactId> |
| 57 | + <version>1.1</version> |
| 58 | + </dependency> |
| 59 | + |
| 60 | + <dependency> |
| 61 | + <groupId>com.google.code.gson</groupId> |
| 62 | + <artifactId>gson</artifactId> |
| 63 | + <version>2.2.4</version> |
| 64 | + </dependency> |
| 65 | + |
| 66 | + <!-- Apache commons --> |
| 67 | + <dependency> |
| 68 | + <groupId>commons-cli</groupId> |
| 69 | + <artifactId>commons-cli</artifactId> |
| 70 | + <version>1.1</version> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>commons-io</groupId> |
| 74 | + <artifactId>commons-io</artifactId> |
| 75 | + <version>2.2</version> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>commons-codec</groupId> |
| 79 | + <artifactId>commons-codec</artifactId> |
| 80 | + <version>1.7</version> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>commons-lang</groupId> |
| 84 | + <artifactId>commons-lang</artifactId> |
| 85 | + <version>2.6</version> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>commons-logging</groupId> |
| 89 | + <artifactId>commons-logging</artifactId> |
| 90 | + <version>1.1.3</version> |
| 91 | + </dependency> |
| 92 | + |
| 93 | + |
| 94 | + <dependency> |
| 95 | + <groupId>org.apache.httpcomponents</groupId> |
| 96 | + <artifactId>httpclient</artifactId> |
| 97 | + <version>4.2.5</version> |
| 98 | + </dependency> |
| 99 | + <dependency> |
| 100 | + <groupId>org.apache.httpcomponents</groupId> |
| 101 | + <artifactId>httpcore</artifactId> |
| 102 | + <version>4.2.4</version> |
| 103 | + </dependency> |
| 104 | + |
| 105 | + <!-- Others --> |
| 106 | + <dependency> |
| 107 | + <groupId>xerces</groupId> |
| 108 | + <artifactId>xercesImpl</artifactId> |
| 109 | + <version>2.8.1</version> |
| 110 | + </dependency> |
| 111 | + |
| 112 | + </dependencies> |
| 113 | + |
| 114 | + <build> |
| 115 | + <resources> |
| 116 | + <resource> |
| 117 | + <directory>src/main/resources</directory> |
| 118 | + <filtering>true</filtering> |
| 119 | + </resource> |
| 120 | + </resources> |
| 121 | + <plugins> |
| 122 | + <plugin> |
| 123 | + <groupId>org.apache.maven.plugins</groupId> |
| 124 | + <artifactId>maven-compiler-plugin</artifactId> |
| 125 | + <version>3.1</version> |
| 126 | + <configuration> |
| 127 | + <source>1.6</source> |
| 128 | + <target>1.6</target> |
| 129 | + </configuration> |
| 130 | + </plugin> |
| 131 | + <plugin> |
| 132 | + <groupId>org.apache.maven.plugins</groupId> |
| 133 | + <artifactId>maven-assembly-plugin</artifactId> |
| 134 | + <executions> |
| 135 | + <execution> |
| 136 | + <phase>package</phase> |
| 137 | + <goals> |
| 138 | + <goal>attached</goal> |
| 139 | + </goals> |
| 140 | + </execution> |
| 141 | + </executions> |
| 142 | + <configuration> |
| 143 | + <descriptorRefs> |
| 144 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 145 | + </descriptorRefs> |
| 146 | + <archive> |
| 147 | + <manifest> |
| 148 | + <addClasspath>true</addClasspath> |
| 149 | + </manifest> |
| 150 | + </archive> |
| 151 | + </configuration> |
| 152 | + </plugin> |
| 153 | + <plugin> |
| 154 | + <groupId>org.apache.maven.plugins</groupId> |
| 155 | + <artifactId>maven-surefire-plugin</artifactId> |
| 156 | + <version>2.14.1</version> |
| 157 | + <configuration> |
| 158 | + <skipTests>true</skipTests> |
| 159 | + </configuration> |
| 160 | + </plugin> |
| 161 | + </plugins> |
| 162 | + </build> |
| 163 | +</project> |
0 commit comments