|
| 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 | + <parent> |
| 6 | + <groupId>io.github.hhromic.uimr</groupId> |
| 7 | + <artifactId>parent-pom</artifactId> |
| 8 | + <version>${archetypeVersion}</version> |
| 9 | + </parent> |
| 10 | + |
| 11 | + <groupId>${groupId}</groupId> |
| 12 | + <artifactId>${artifactId}</artifactId> |
| 13 | + <version>${version}</version> |
| 14 | + <packaging>jar</packaging> |
| 15 | + |
| 16 | + <!-- Define the name and description for your artifact --> |
| 17 | + <name>Hello World</name> |
| 18 | + <description>This artifact simple prints Hello World.</description> |
| 19 | + |
| 20 | + <!-- Define information about the developers --> |
| 21 | + <developers> |
| 22 | + <developer> |
| 23 | + <id>firlas</id> |
| 24 | + <name>First Last</name> |
| 25 | + <email>first.last@insight-centre.org</email> |
| 26 | + <url>https://github.com/firlas/</url> |
| 27 | + </developer> |
| 28 | + </developers> |
| 29 | + |
| 30 | + <!-- Main class of your artifact --> |
| 31 | + <properties> |
| 32 | + <mainClass>${package}.HelloWorld</mainClass> |
| 33 | + </properties> |
| 34 | + |
| 35 | + <build> |
| 36 | + <plugins> |
| 37 | + <plugin> |
| 38 | + <groupId>org.apache.maven.plugins</groupId> |
| 39 | + <artifactId>maven-compiler-plugin</artifactId> |
| 40 | + <configuration> |
| 41 | + <source>1.8</source> |
| 42 | + <target>1.8</target> |
| 43 | + </configuration> |
| 44 | + </plugin> |
| 45 | + <plugin> |
| 46 | + <groupId>org.apache.maven.plugins</groupId> |
| 47 | + <artifactId>maven-shade-plugin</artifactId> |
| 48 | + </plugin> |
| 49 | + </plugins> |
| 50 | + </build> |
| 51 | + |
| 52 | + <!-- Remove unneeded UIMR Java Toolbox dependencies --> |
| 53 | + <dependencies> |
| 54 | + <dependency> |
| 55 | + <groupId>io.github.hhromic.uimr</groupId> |
| 56 | + <artifactId>logging</artifactId> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>io.github.hhromic.uimr</groupId> |
| 60 | + <artifactId>toolbox</artifactId> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>io.github.hhromic.uimr</groupId> |
| 64 | + <artifactId>toolbox-as</artifactId> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>io.github.hhromic.uimr</groupId> |
| 68 | + <artifactId>toolbox-concurrent</artifactId> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>io.github.hhromic.uimr</groupId> |
| 72 | + <artifactId>toolbox-mysql</artifactId> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>io.github.hhromic.uimr</groupId> |
| 76 | + <artifactId>toolbox-servlet</artifactId> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>io.github.hhromic.uimr</groupId> |
| 80 | + <artifactId>toolbox-stats</artifactId> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>io.github.hhromic.uimr</groupId> |
| 84 | + <artifactId>toolbox-twitter</artifactId> |
| 85 | + </dependency> |
| 86 | + </dependencies> |
| 87 | +</project> |
0 commit comments