Skip to content

Commit 4163d92

Browse files
committed
Initial version
1 parent 155be52 commit 4163d92

File tree

9 files changed

+678
-0
lines changed

9 files changed

+678
-0
lines changed

.classpath

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src/main/java"/>
4+
<classpathentry kind="src" path="src/main/resources"/>
5+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
6+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
7+
<classpathentry kind="lib" path="java/lib/rsuite-message-props-lib-0.0.1.jar"/>
8+
<classpathentry kind="lib" path="java/lib/rsuite-xml-utils-lib-0.0.1.jar"/>
9+
<classpathentry kind="output" path="target"/>
10+
</classpath>

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.gradle/
2+
/target/

.project

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>rsuite-mo-utils-lib</name>
4+
<comment>Project rsuite-mo-utils-lib created by Buildship.</comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
21+
<nature>org.eclipse.jdt.core.javanature</nature>
22+
</natures>
23+
</projectDescription>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
connection.arguments=
2+
connection.gradle.distribution=GRADLE_DISTRIBUTION(VERSION(1.12))
3+
connection.gradle.user.home=null
4+
connection.java.home=null
5+
connection.jvm.arguments=
6+
connection.project.dir=
7+
derived.resources=.gradle,build
8+
eclipse.preferences.version=1
9+
project.path=\:

build.gradle

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
apply plugin: 'java'
2+
apply plugin: 'maven'
3+
4+
apply from: 'http://ivy.reallysi.com/ivy-repo/rsuite-community/repositories.gradle'
5+
apply from: 'http://ivy.reallysi.com/ivy-repo/rsuite-community/std-plugin-tasks.gradle'
6+
7+
group = "rsuite-community"
8+
project.buildDir = 'target'
9+
10+
configurations {
11+
includeInJar {
12+
transitive = false
13+
}
14+
}
15+
16+
dependencies {
17+
compile ('rsi:rsuite-api:5.0.0') {
18+
transitive=false
19+
}
20+
compile ('rsuite-community:rsuite-message-props-lib:0.0.1') {
21+
transitive=false
22+
}
23+
compile ('rsuite-community:rsuite-xml-utils-lib:0.0.1') {
24+
transitive=false
25+
}
26+
compile ('apache:commons-fileupload:1.2.1') {
27+
transitive=false
28+
}
29+
compile ('apache:commons-io:1.4') {
30+
transitive=false
31+
}
32+
compile ('apache:commons-lang:3.3.1') {
33+
transitive=false
34+
}
35+
36+
configurations.compile.extendsFrom(configurations.includeInJar)
37+
}
38+
39+
jar () {
40+
baseName='rsuite-mo-utils-lib'
41+
from configurations.includeInJar
42+
}

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
projectVersion=0.0.1

0 commit comments

Comments
 (0)