LitExp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.roisoleil</groupId>
<artifactId>LitExp</artifactId>
<version>0.3</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>org.roisoleil</groupId>
<artifactId>LitExp</artifactId>
<version>0.3</version>
<packaging>jar</packaging>
<name>LitExp</name>
<description>A 'lite' mathematical and logical expression evaluator.</description>
<url>https://github.com/RoiSoleil/LitExp</url>
<organization>
<name>GILLES Hélios</name>
<url>https://heliosgilles.fr</url>
</organization>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>GILLES Hélios</name>
<organizationUrl>https://github.com/RoiSoleil</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:RoiSoleil/LitExp.git</connection>
<developerConnection>scm:git:git@github.com:RoiSoleil/LitExp.git</developerConnection>
<url>git@github.com:RoiSoleil/LitExp.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<versionMavenDocs>3.0.0</versionMavenDocs>
<versionMavenSources>3.0.1</versionMavenSources>
<versionMavenGPG>1.6</versionMavenGPG>
<versionSonatypeStage>1.6.8</versionSonatypeStage>
</properties>
<issueManagement>
<system>github</system>
<url>https://github.com/RoiSoleil/LitExp/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>oss.sonatype.org</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>oss.sonatype.org</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${versionMavenSources}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${versionMavenDocs}</version>
<configuration>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${versionMavenGPG}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${versionSonatypeStage}</version>
<extensions>true</extensions>
<configuration>
<serverId>oss.sonatype.org</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
</configuration>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
<goal>release</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>