Skip to content

Commit c1546b4

Browse files
committed
readme upd
1 parent 94b1cc1 commit c1546b4

File tree

2 files changed

+80
-1
lines changed

2 files changed

+80
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ java -jar migec.jar ...
1616

1717
Make sure that you've specified the full/correct path to jar file. In case of Java Heap Space exception, you can increase the JVM memory limit by adding ``-Xmx20G`` (for extra 20G) after the ``-jar`` argument.
1818

19-
The software is cross-platform and requires Java v1.7+ to run.
19+
The software is cross-platform and requires Java v1.8+ to run.
2020

2121
Easy installation on MacOS/Linux via [Homebrew](http://brew.sh/) or [Linuxbrew](http://linuxbrew.sh/):
2222
```bash

dependency-reduced-pom.xml

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.milaboratory</groupId>
5+
<artifactId>migec</artifactId>
6+
<name>migec</name>
7+
<version>1.2.7</version>
8+
<url>http://maven.apache.org</url>
9+
<build>
10+
<resources>
11+
<resource>
12+
<directory>src/main/resources</directory>
13+
<includes>
14+
<include>*.*</include>
15+
</includes>
16+
</resource>
17+
</resources>
18+
<plugins>
19+
<plugin>
20+
<artifactId>maven-jar-plugin</artifactId>
21+
<version>2.4</version>
22+
<configuration>
23+
<archive>
24+
<manifest>
25+
<addClasspath>true</addClasspath>
26+
<mainClass>com.milaboratory.migec.Migec</mainClass>
27+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
28+
</manifest>
29+
</archive>
30+
</configuration>
31+
</plugin>
32+
<plugin>
33+
<artifactId>maven-compiler-plugin</artifactId>
34+
<version>3.6.1</version>
35+
<dependencies>
36+
<dependency>
37+
<groupId>org.codehaus.groovy</groupId>
38+
<artifactId>groovy-eclipse-compiler</artifactId>
39+
<version>2.9.2-01</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.codehaus.groovy</groupId>
43+
<artifactId>groovy-eclipse-batch</artifactId>
44+
<version>2.4.3-01</version>
45+
</dependency>
46+
</dependencies>
47+
<configuration>
48+
<compilerId>groovy-eclipse-compiler</compilerId>
49+
<source>1.8</source>
50+
<target>1.8</target>
51+
</configuration>
52+
</plugin>
53+
<plugin>
54+
<artifactId>maven-shade-plugin</artifactId>
55+
<version>2.1</version>
56+
<executions>
57+
<execution>
58+
<phase>package</phase>
59+
<goals>
60+
<goal>shade</goal>
61+
</goals>
62+
</execution>
63+
</executions>
64+
</plugin>
65+
</plugins>
66+
</build>
67+
<dependencies>
68+
<dependency>
69+
<groupId>junit</groupId>
70+
<artifactId>junit</artifactId>
71+
<version>3.8.1</version>
72+
<scope>test</scope>
73+
</dependency>
74+
</dependencies>
75+
<properties>
76+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
77+
</properties>
78+
</project>
79+

0 commit comments

Comments
 (0)