<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> <parent> <artifactId>project-defaults</artifactId> <groupId>io.virtdata</groupId> <version>1.0.51</version> <relativePath>../project-defaults</relativePath> </parent> <artifactId>metagen-lib-realer</artifactId> <packaging>jar</packaging> <name>metagen-lib-realer</name> <url>http://virtdata.io/</url> <description>With inspiration from other libraries</description> <dependencies> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> <version>1.0-rc3</version> <!--<optional>true</optional>--> <scope>compile</scope> </dependency> <dependency> <groupId>io.virtdata</groupId> <artifactId>metagen-api</artifactId> <version>1.0.51</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.11</version> </dependency> <!--<dependency>--> <!--<groupId>joda-time</groupId>--> <!--<artifactId>joda-time</artifactId>--> <!--<version>2.9.1</version>--> <!--</dependency>--> <!--<dependency>--> <!--<groupId>org.apache.commons</groupId>--> <!--<artifactId>commons-math3</artifactId>--> <!--<version>3.6</version>--> <!--</dependency>--> <!--<dependency>--> <!--<groupId>de.greenrobot</groupId>--> <!--<artifactId>java-common</artifactId>--> <!--<version>2.0.0</version>--> <!--</dependency>--> <!--<dependency>--> <!--<groupId>com.elega9t</groupId>--> <!--<artifactId>number-to-words</artifactId>--> <!--<version>1.0.0</version>--> <!--</dependency>--> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core-java8</artifactId> <version>1.0.0m1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!--<plugin>--> <!--<groupId>org.apache.maven.plugins</groupId>--> <!--<artifactId>maven-surefire-plugin</artifactId>--> <!--<version>2.19.1</version>--> <!--<configuration>--> <!--<useSystemClassLoader>false</useSystemClassLoader> <!– fixes reflection tests –>--> <!--</configuration>--> <!--</plugin>--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> <annotationProcessors> <annotationProcessor> com.google.auto.service.processor.AutoServiceProcessor </annotationProcessor> </annotationProcessors> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.4.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> <!--<transformer implementation="org.apache.maven.plugins.shade.resources.IncludeResourceTransformer">--> <!--</transformer>--> </transformers> <createSourcesJar>true</createSourcesJar> <createDependencyReducedPom>false</createDependencyReducedPom> <minimizeJar>false</minimizeJar> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>io.virtdata</groupId> <artifactId>metagen-lib-realer</artifactId> <version>1.0.51</version> </dependency>
io.virtdata:metagen-lib-realer:1.0.51