example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.artfii.amq</groupId>
<artifactId>example</artifactId>
<version>0.0.3-snapshot</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<packaging>pom</packaging>
<parent>
<groupId>com.artfii.amq</groupId>
<artifactId>amq-parent</artifactId>
<version>0.0.3-snapshot</version>
<relativePath>../amq-parent</relativePath>
</parent>
<groupId>com.artfii.amq</groupId>
<artifactId>example</artifactId>
<version>0.0.3-snapshot</version>
<modules>
<module>act</module>
<module>spring-boot</module>
</modules>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>