hime-redist
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fr.cenotelie.hime</groupId> <artifactId>hime-redist</artifactId> <version>4.0.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>fr.cenotelie.hime</groupId> <artifactId>hime-redist</artifactId> <packaging>bundle</packaging> <version>4.0.0</version> <name>Hime Runtime</name> <description>Redistributable Java runtime for the parsers generated with Hime</description> <url>https://cenotelie.fr/projects/hime</url> <licenses> <license> <name>GNU Lesser General Public License, Version 3</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> </license> </licenses> <organization> <name>Association Cénotélie</name> <url>http://cenotelie.fr/</url> </organization> <developers> <developer> <name>Laurent Wouters</name> <email>lwouters@cenotelie.fr</email> <organization>Association Cénotélie</organization> <organizationUrl>http://cenotelie.fr/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/cenotelie/hime</connection> <developerConnection>scm:git:ssh://git@github.com:cenotelie/hime</developerConnection> <url>https://github.com/cenotelie/hime</url> <tag>v4.0.0</tag> </scm> <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-resources-plugin</artifactId> <version>3.0.2</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.7</source> <target>1.7</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <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> <configuration> <keyname>contact@cenotelie.fr</keyname> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> <pushChanges>false</pushChanges> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.2.0</version> <extensions>true</extensions> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <Bundle-Product-Link>${project.url}</Bundle-Product-Link> <Bundle-SCM-Tag>${buildNumber}</Bundle-SCM-Tag> <Bundle-Build-Tag>${env.BUILD_TAG}</Bundle-Build-Tag> <Bundle-Build-Timestamp>${timestamp}</Bundle-Build-Timestamp> </instructions> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>generate-changeset</id> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> <execution> <id>generate-timestamp</id> <phase>initialize</phase> <goals> <goal>create-timestamp</goal> </goals> </execution> </executions> <configuration> <timestampFormat>dd/MM/yyyy HH:mm:ss</timestampFormat> </configuration> </plugin> </plugins> </build> </project>