|
| 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>org.malkomich</groupId> |
| 6 | + <artifactId>climet</artifactId> |
| 7 | + <version>1.0</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <name>Clime Tool API</name> |
| 11 | + <description>Weather library for Java applications</description> |
| 12 | + <url>https://github.com/malkomich/climet</url> |
| 13 | + |
| 14 | + <properties> |
| 15 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 17 | + <java.version>1.7</java.version> |
| 18 | + </properties> |
| 19 | + |
| 20 | + <distributionManagement> |
| 21 | + <repository> |
| 22 | + <id>repo</id> |
| 23 | + <name>Local Staging Repository</name> |
| 24 | + <url>file://${project.basedir}</url> |
| 25 | + </repository> |
| 26 | + </distributionManagement> |
| 27 | + |
| 28 | + <dependencies> |
| 29 | + <dependency> |
| 30 | + <groupId>junit</groupId> |
| 31 | + <artifactId>junit</artifactId> |
| 32 | + <version>4.11</version> |
| 33 | + <scope>test</scope> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>org.json</groupId> |
| 37 | + <artifactId>json</artifactId> |
| 38 | + <version>20140107</version> |
| 39 | + </dependency> |
| 40 | + |
| 41 | + </dependencies> |
| 42 | + |
| 43 | + <build> |
| 44 | + <plugins> |
| 45 | + <plugin> |
| 46 | + <groupId>org.apache.maven.plugins</groupId> |
| 47 | + <artifactId>maven-compiler-plugin</artifactId> |
| 48 | + <version>3.3</version> |
| 49 | + <configuration> |
| 50 | + <source>${java.version}</source> |
| 51 | + <target>${java.version}</target> |
| 52 | + <encoding>${project.build.sourceEncoding}</encoding> |
| 53 | + </configuration> |
| 54 | + </plugin> |
| 55 | + <plugin> |
| 56 | + <groupId>org.codehaus.mojo</groupId> |
| 57 | + <artifactId>license-maven-plugin</artifactId> |
| 58 | + <version>1.8</version> |
| 59 | + <executions> |
| 60 | + <execution> |
| 61 | + <id>download-licenses</id> |
| 62 | + <goals> |
| 63 | + <goal>download-licenses</goal> |
| 64 | + </goals> |
| 65 | + </execution> |
| 66 | + </executions> |
| 67 | + </plugin> |
| 68 | + <plugin> |
| 69 | + <artifactId>maven-assembly-plugin</artifactId> |
| 70 | + <configuration> |
| 71 | + <descriptorRefs> |
| 72 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 73 | + </descriptorRefs> |
| 74 | + <archive> |
| 75 | + <manifest> |
| 76 | + <mainClass>fully.qualified.MainClass</mainClass> |
| 77 | + </manifest> |
| 78 | + </archive> |
| 79 | + </configuration> |
| 80 | + </plugin> |
| 81 | + </plugins> |
| 82 | + </build> |
| 83 | + |
| 84 | + <developers> |
| 85 | + <developer> |
| 86 | + <name>Juan Carlos González</name> |
| 87 | + |
| 88 | + <id>malkomich</id> |
| 89 | + </developer> |
| 90 | + </developers> |
| 91 | + |
| 92 | + <scm> |
| 93 | + <connection>scm:git:https://github.com/malkomich/climet.git</connection> |
| 94 | + <developerConnection>scm:git:https://github.com/malkomich/climet.git |
| 95 | + </developerConnection> |
| 96 | + <url>https://github.com/malkomich/climet</url> |
| 97 | + </scm> |
| 98 | +</project> |
0 commit comments