blaise-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.googlecode.blaisemath</groupId>
<artifactId>blaise-parser</artifactId>
<version>0.6.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>com.googlecode.blaisemath</groupId>
<artifactId>blaise-parser</artifactId>
<version>0.6.3</version>
<packaging>jar</packaging>
<name>BlaiseParser</name>
<description>
Lightweight expression parsing library.
</description>
<url>http://blaisemath.googlecode.com</url>
<inceptionYear>2009</inceptionYear>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>ElishaPeterson</id>
<name>Elisha Peterson</name>
<email>triathematician+blaise@gmail.com</email>
<organization>NA</organization>
<organizationUrl>NA</organizationUrl>
</developer>
</developers>
<scm>
<url>https://blaisemath.googlecode.com/svn/tags/blaise-parser-0.6.3</url>
<connection>scm:svn:https://blaisemath.googlecode.com/svn/tags/blaise-parser-0.6.3</connection>
<developerConnection>scm:svn:https://blaisemath.googlecode.com/svn/tags/blaise-parser-0.6.3</developerConnection>
</scm>
<issueManagement>
<system>Google code</system>
<url>https://code.google.com/p/blaisemath/issues/list</url>
</issueManagement>
<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>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- set license attributes for license plugin -->
<license.organizationName>Elisha Peterson</license.organizationName>
<license.licenseName>apache_v2</license.licenseName>
</properties>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>2.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- compile to Java 1.6 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<!-- Automatically update file headers, and add license file to distribution -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.6</version>
<configuration>
<roots>
<root>src/main/java</root>
<root>src/test</root>
</roots>
<canUpdateCopyright>true</canUpdateCopyright>
<sectionDelimiter>--</sectionDelimiter>
<excludes>
<exclude>**/com/google/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>update-project-license</goal>
<goal>update-file-header</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- override to customize release plugin options -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- this is for building sources & javadocs, signing, & deploying to staging repo -->
<id>release</id>
<build>
<plugins>
<!-- build sources -->
<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>
<!-- build javadocs -->
<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 the artifacts with gpg (requires command-line utility) -->
<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 to staging repo -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>