cowsay-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.ricksbrown</groupId>
<artifactId>cowsay-parent</artifactId>
<version>1.1.0</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>
<groupId>com.github.ricksbrown</groupId>
<artifactId>cowsay-parent</artifactId>
<version>1.1.0</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<description>
Java port of the original cowsay by Tony Monroe.
Moo!
</description>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<licenses>
<!--
Note that the original cowsay is by Tony Monroe <tony@nog.net>
Cowfiles used in this project are directly taken from https://github.com/schacon/cowsay and are covered by that project's copyright.
-->
<license>
<name>MIT License</name>
<url>https://tldrlegal.com/license/mit-license</url>
<distribution>manual</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/ricksbrown/cowsay</url>
<connection>scm:git:https://github.com/ricksbrown/cowsay.git</connection>
<developerConnection>scm:git:https://github.com/ricksbrown/cowsay.git</developerConnection>
<tag>cowsay-parent-1.1.0</tag>
</scm>
<developers>
<developer>
<id>ricksbrown</id>
<name>Rick Brown</name>
<email>ricksbrown73@gmail.com</email>
<roles>
<role>Project Owner</role>
<role>Developer</role>
</roles>
</developer>
</developers>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>cowgen</id>
<!--
This could be used to generate native cow output files for test resources.
-->
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>cowtput</id>
<phase>generate-test-resources</phase>
<configuration>
<tasks>
<exec executable="/bin/bash">
<arg value="${basedir}/cowgen.sh" />
<arg value="${basedir}/cowjar/target/classes/cows" />
<arg value="${basedir}/cowsay/src/test/resources/cowgen/cowjar" />
</exec>
</tasks>
<tasks>
<exec executable="/bin/bash">
<arg value="${basedir}/cowgen.sh" />
<arg value="${basedir}/cowjar-extra/target/classes/cows" />
<arg value="${basedir}/cowsay/src/test/resources/cowgen/cowjar-extra" />
</exec>
</tasks>
<tasks>
<exec executable="/bin/bash">
<arg value="${basedir}/cowgen.sh" />
<arg value="${basedir}/cowjar-js/target/classes/cows" />
<arg value="${basedir}/cowsay/src/test/resources/cowgen/cowjar-js" />
</exec>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<!-- need this for gpg plugin to work correctly -->
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
<!-- <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
This is necessary for the maven-release-plugin since it does not handle git submodules
<id>git submodule update</id>
<phase>initialize</phase>
<configuration>
<executable>git</executable>
<arguments>
<argument>submodule</argument>
<argument>update</argument>
<argument>- -init</argument>
<argument>- -recursive</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>-->
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>copy-cowfiles</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/cows</outputDirectory>
<resources>
<resource>
<directory>${java.io.tmpdir}/${cowfiles.unzipped}</directory>
<filtering>false</filtering>
<includes>
<include>*.cow</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
<configuration>
<systemProperties>
<property>
<name>project.version</name>
<value>${project.version}</value>
</property>
</systemProperties>
</configuration>
</plugin>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.4.2</version>
<executions>
<execution>
<id>download-cowfiles</id>
<phase>initialize</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>${cowzip.download.url}</url>
<unpack>true</unpack>
<outputDirectory>${java.io.tmpdir}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>cowjar</module>
<module>cowjar-off</module>
<module>cowjar-extra</module>
<module>cowjar-js</module>
<module>cowsay</module>
</modules>
</project>