jaap-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>tk.labyrinth</groupId>
<artifactId>jaap-examples</artifactId>
<version>0.2.7</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>jaap-parent</artifactId>
<groupId>tk.labyrinth</groupId>
<version>0.2.7</version>
</parent>
<!---->
<artifactId>jaap-examples</artifactId>
<!---->
<name>${project.groupId}:${project.artifactId}</name>
<description>JAAP Examples</description>
<!---->
<dependencies>
<!-- COMPILE BEGIN -->
<dependency>
<groupId>tk.labyrinth</groupId>
<artifactId>jaap</artifactId>
</dependency>
<!-- COMPILE END -->
<!---->
<!-- PROVIDED BEGIN -->
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
</dependency>
<!-- PROVIDED END -->
<!---->
<!-- RUNTIME BEGIN -->
<!-- RUNTIME END -->
<!---->
<!-- TEST BEGIN -->
<dependency>
<groupId>tk.labyrinth</groupId>
<artifactId>jaap-testing</artifactId>
</dependency>
<!-- TEST END -->
</dependencies>
<!---->
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<executions>
<execution>
<id>injected-nexus-deploy</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!---->
</project>