Skip to content

Commit 1d01872

Browse files
author
seppinho
committed
update to maven; deleting jars
1 parent f592e53 commit 1d01872

File tree

7 files changed

+106
-10
lines changed

7 files changed

+106
-10
lines changed

genepi-io/.classpath

+15-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<classpath>
3-
<classpathentry kind="src" path="src"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
5-
<classpathentry kind="lib" path="lib/jxl.jar"/>
6-
<classpathentry kind="lib" path="lib/opencsv-1.8.jar"/>
7-
<classpathentry kind="lib" path="lib/commons-cli-1.2.jar"/>
8-
<classpathentry kind="output" path="bin"/>
9-
</classpath>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
4+
<attributes>
5+
<attribute name="maven.pomderived" value="true"/>
6+
</attributes>
7+
</classpathentry>
8+
<classpathentry excluding="main/java/|test/java/" kind="src" path="src"/>
9+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="output" path="target/classes"/>
15+
</classpath>

genepi-io/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/dist
2-
/bin
2+
/bin
3+
/target

genepi-io/.project

+6
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@
1010
<arguments>
1111
</arguments>
1212
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
1318
</buildSpec>
1419
<natures>
20+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
1521
<nature>org.eclipse.jdt.core.javanature</nature>
1622
</natures>
1723
</projectDescription>

genepi-io/lib/commons-cli-1.2.jar

-40.2 KB
Binary file not shown.

genepi-io/lib/jxl.jar

-726 KB
Binary file not shown.

genepi-io/lib/opencsv-1.8.jar

-8.51 KB
Binary file not shown.

genepi-io/pom.xml

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>genepi-io</groupId>
5+
<artifactId>genepi-io</artifactId>
6+
<version>0.0.1-SNAPSHOT</version>
7+
<properties>
8+
<github.global.server>github</github.global.server>
9+
<jdk.version>1.7</jdk.version>
10+
</properties>
11+
12+
<distributionManagement>
13+
<repository>
14+
<id>internal.repo</id>
15+
<name>Temporary Staging Repository</name>
16+
<url>file://${project.build.directory}/mvn-repo</url>
17+
</repository>
18+
</distributionManagement>
19+
20+
<build>
21+
<plugins>
22+
<plugin>
23+
<groupId>org.apache.maven.plugins</groupId>
24+
<artifactId>maven-compiler-plugin</artifactId>
25+
<version>3.1</version>
26+
<configuration>
27+
<source>${jdk.version}</source>
28+
<target>${jdk.version}</target>
29+
</configuration>
30+
</plugin>
31+
<plugin>
32+
<artifactId>maven-deploy-plugin</artifactId>
33+
<version>2.8.1</version>
34+
<configuration>
35+
<altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository>
36+
</configuration>
37+
</plugin>
38+
<plugin>
39+
<groupId>com.github.github</groupId>
40+
<artifactId>site-maven-plugin</artifactId>
41+
<version>0.8</version>
42+
<configuration>
43+
<message>Maven artifacts for ${project.version}</message> <!-- git commit message -->
44+
<noJekyll>true</noJekyll> <!-- disable webpage processing -->
45+
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory> <!-- matches distribution management repository url above -->
46+
<branch>refs/heads/master</branch> <!-- remote branch name -->
47+
<includes><include>**/*</include></includes>
48+
<repositoryName>maven</repositoryName> <!-- github repo name -->
49+
<repositoryOwner>genepi</repositoryOwner> <!-- github username -->
50+
</configuration>
51+
<executions>
52+
<!-- run site-maven-plugin's 'site' target as part of the build's normal 'deploy' phase -->
53+
<execution>
54+
<goals>
55+
<goal>site</goal>
56+
</goals>
57+
<phase>deploy</phase>
58+
</execution>
59+
</executions>
60+
</plugin>
61+
</plugins>
62+
</build>
63+
64+
65+
<dependencies>
66+
<dependency>
67+
<groupId>net.sf.opencsv</groupId>
68+
<artifactId>opencsv</artifactId>
69+
<version>2.3</version>
70+
</dependency>
71+
<dependency>
72+
<groupId>commons-cli</groupId>
73+
<artifactId>commons-cli</artifactId>
74+
<version>1.2</version>
75+
</dependency>
76+
<dependency>
77+
<groupId>net.sourceforge.jexcelapi</groupId>
78+
<artifactId>jxl</artifactId>
79+
<version>2.6.12</version>
80+
</dependency>
81+
82+
</dependencies>
83+
</project>

0 commit comments

Comments
 (0)