Skip to content

Commit

Permalink
Initial project skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Apr 22, 2014
0 parents commit e27e622
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.classpath
/.project
/.settings
/target/
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ImageJ Swing UI
---------------

ImageJ user interface using Java Swing.
78 changes: 78 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<?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>

<parent>
<groupId>net.imagej</groupId>
<artifactId>pom-imagej</artifactId>
<version>2.1</version>
<relativePath />
</parent>

<artifactId>imagej-ui-swing</artifactId>
<version>0.1.0-SNAPSHOT</version>

<name>ImageJ UI: Swing</name>
<description>ImageJ UI for Java Swing.</description>

<scm>
<connection>scm:git:git://github.com/imagej/imagej-ui-swing</connection>
<developerConnection>scm:git:[email protected]:imagej/imagej-ui-swing</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/imagej/imagej-ui-swing</url>
</scm>

<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/imagej/imagej-ui-swing/issues</url>
</issueManagement>

<ciManagement>
<system>Jenkins</system>
<url>http://jenkins.imagej.net/job/ImageJ-UI-Swing/</url>
</ciManagement>

<repositories>
<repository>
<id>imagej.public</id>
<url>http://maven.imagej.net/content/groups/public</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>net.imagej</groupId>
<artifactId>imagej-common</artifactId>
</dependency>
<dependency>
<groupId>org.scijava</groupId>
<artifactId>scijava-common</artifactId>
</dependency>
<dependency>
<groupId>org.scijava</groupId>
<artifactId>scijava-ui-swing</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<packageName>net.imagej.ui.swing</packageName>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit e27e622

Please sign in to comment.