blaise-sketch
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.googlecode.blaisemath</groupId>
<artifactId>blaise-sketch</artifactId>
<version>0.2.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.googlecode.blaisemath</groupId>
<artifactId>blaise-sketch</artifactId>
<version>0.2.0</version>
<packaging>jar</packaging>
<name>BlaiseSketch</name>
<description>Provides mouse gestures and a UI interface for creating and editing graphics.</description>
<url>http://blaisemath.googlecode.com</url>
<inceptionYear>2014</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>
<connection>scm:svn:https://blaisemath.googlecode.com/svn/tags/blaise-sketch-0.2.0</connection>
<developerConnection>scm:svn:https://blaisemath.googlecode.com/svn/tags/blaise-sketch-0.2.0</developerConnection>
<url>https://blaisemath.googlecode.com/svn/tags/blaise-sketch-0.2.0</url>
</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>org.jdesktop</groupId>
<artifactId>appframework</artifactId>
<version>1.0.3</version>
<scope>test</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.jdesktop.bsaf</groupId>
<artifactId>bsaf</artifactId>
<version>1.9.2</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaise-graphics</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaise-svg</artifactId>
<version>0.2.0</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.14</version>
</dependency>
<dependency>
<groupId>com.googlecode.blaisemath</groupId>
<artifactId>firestarter</artifactId>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaise-common</artifactId>
<version>0.2.1</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaise-gestures</artifactId>
<version>0.1.0</version>
</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>
<!-- create executable jar -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.googlecode.blaisemath.sketch.BlaiseSketchApp</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<finalName>${project.artifactId}-${project.version}-executable</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</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>