jasker
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.teuton-software</groupId> <artifactId>jasker</artifactId> <version>2.5.9</version> </dependency>
<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>io.github.teuton-software</groupId> <artifactId>jasker</artifactId> <version>2.5.9</version> <name>jasker</name> <description>Java wrapper for asker Ruby gem</description> <url>https://github.com/teuton-software/jasker</url> <properties> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>1.8</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <asker.version>2.5.9</asker.version> <jackson.version>2.15.1</jackson.version> <jruby.version>9.4.2.0</jruby.version> </properties> <licenses> <license> <name>GPL-v3.0</name> <url>https://www.gnu.org/licenses/gpl-3.0.txt</url> </license> </licenses> <developers> <developer> <id>fvarrui</id> <name>Francisco Vargas Ruiz</name> <url>https://github.com/fvarrui</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/teuton-software/jteuton.git</connection> <developerConnection>scm:git:git@github.com:fvarrui/fvarrui.git</developerConnection> <url>https://github.com/teuton-software/jteuton</url> <tag>v${project.version}</tag> </scm> <dependencies> <!-- jruby --> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-complete</artifactId> <version>${jruby.version}</version> </dependency> <!-- common io utils --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.12.0</version> </dependency> <!-- common lang utils --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version> </dependency> <!-- yaml parser --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>${jackson.version}</version> </dependency> <!-- unit tests --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- generate jteuton.properties file from pom.xml --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.1.0</version> <executions> <execution> <phase>generate-test-resources</phase> <goals> <goal>write-project-properties</goal> </goals> <configuration> <outputFile>${project.basedir}/src/test/resources/jasker.properties</outputFile> </configuration> </execution> </executions> </plugin> <!-- remove rubygems --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>uninstall-rubygems</id> <goals> <goal>clean</goal> </goals> <configuration> <filesets> <fileset> <directory>${basedir}/src/main/resources/rubygems</directory> </fileset> </filesets> </configuration> </execution> </executions> </plugin> <!-- download and install rubygems [requires ruby] --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>install-rubygems</id> <goals> <goal>exec</goal> </goals> <configuration> <executable>gem</executable> <arguments> <argument>install</argument> <argument>--install-dir</argument> <argument>${basedir}/src/main/resources/rubygems</argument> <argument>--no-document</argument> <argument>asker-tool:${asker.version}</argument> </arguments> </configuration> </execution> </executions> </plugin> <!-- generate source jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- generate javadoc jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- sign artifacts --> <!-- reminder: gpg cert needed --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- deploy library to maven central --> <!-- reminder: server tag with serverId=s01.oss.sonatype.org, username and password for sonatype needed in settings.xml --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>s01.oss.sonatype.org</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>