grammy-zdeploy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.almasb</groupId>
<artifactId>grammy-zdeploy</artifactId>
<version>0.1.2</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>
<parent>
<groupId>com.github.almasb</groupId>
<artifactId>grammy-lib</artifactId>
<version>0.1.2</version>
</parent>
<artifactId>grammy-zdeploy</artifactId>
<properties>
<skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo>
</properties>
<dependencies>
<dependency>
<groupId>com.github.almasb</groupId>
<artifactId>grammy-editor</artifactId>
<version>0.1.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Compile java -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<!-- Compile kotlin -->
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
</plugin>
<!-- Create sources.jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<!-- Create javadoc.jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>