andrea | a9d838e | 2015-11-10 18:18:10 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <groupId>org.onosproject</groupId> |
| 7 | <artifactId>yangloader</artifactId> |
| 8 | <version>1.0-SNAPSHOT</version> |
| 9 | <dependencies> |
| 10 | <dependency> |
| 11 | <groupId>commons-configuration</groupId> |
| 12 | <artifactId>commons-configuration</artifactId> |
| 13 | <version>1.10</version> |
| 14 | </dependency> |
| 15 | <dependency> |
| 16 | <groupId>commons-io</groupId> |
| 17 | <artifactId>commons-io</artifactId> |
| 18 | <version>2.4</version> |
| 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>com.google.guava</groupId> |
| 22 | <artifactId>guava</artifactId> |
| 23 | <version>18.0</version> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>org.onosproject</groupId> |
| 27 | <artifactId>onlab-misc</artifactId> |
| 28 | <version>1.4.0-SNAPSHOT</version> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>commons-collections</groupId> |
| 32 | <artifactId>commons-collections</artifactId> |
| 33 | <version>3.2.1</version> |
| 34 | <optional>true</optional> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.slf4j</groupId> |
| 38 | <artifactId>slf4j-jdk14</artifactId> |
| 39 | <version>1.7.12</version> |
| 40 | </dependency> |
| 41 | </dependencies> |
| 42 | <build> |
| 43 | <plugins> |
| 44 | <plugin> |
| 45 | <groupId>org.apache.maven.plugins</groupId> |
| 46 | <artifactId>maven-compiler-plugin</artifactId> |
| 47 | <version>3.3</version> |
| 48 | <configuration> |
| 49 | <source>1.8</source> |
| 50 | <target>1.8</target> |
| 51 | </configuration> |
| 52 | </plugin> |
| 53 | <plugin> |
| 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-shade-plugin</artifactId> |
| 56 | <version>2.3</version> |
| 57 | <executions> |
| 58 | <execution> |
| 59 | <phase>package</phase> |
| 60 | <goals> |
| 61 | <goal>shade</goal> |
| 62 | </goals> |
| 63 | <configuration> |
| 64 | <transformers> |
| 65 | <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 66 | <mainClass>org.onoproject.yangtool.YangLoaderMain</mainClass> |
| 67 | </transformer> |
| 68 | </transformers> |
| 69 | </configuration> |
| 70 | </execution> |
| 71 | </executions> |
| 72 | </plugin> |
| 73 | </plugins> |
| 74 | </build> |
| 75 | |
| 76 | </project> |