Skip to content

Commit 2f2a3ce

Browse files
...
1 parent 3fd9d39 commit 2f2a3ce

File tree

13 files changed

+495
-0
lines changed

13 files changed

+495
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,15 @@ npm-debug.log*
3030
/plugins
3131
/www
3232

33+
3334
bin/
3435
tmp/
3536
.metadata
3637
.classpath
3738
.settings
3839
.project
3940

41+
.gradle
42+
4043
target/
44+
build/

SerialX-core/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*/
4+
5+
plugins {
6+
id 'org.ugp.java-conventions'
7+
}
8+
9+
group = 'org.ugp.serialx'
10+
description = 'SerialX core'

SerialX-devtools/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*/
4+
5+
plugins {
6+
id 'org.ugp.java-conventions'
7+
}
8+
9+
dependencies {
10+
api project(':core')
11+
}
12+
13+
group = 'org.ugp.serialx'
14+
description = 'SerialX devtools'

SerialX-json/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*/
4+
5+
plugins {
6+
id 'org.ugp.java-conventions'
7+
}
8+
9+
dependencies {
10+
api project(':juss')
11+
}
12+
13+
group = 'org.ugp.serialx'
14+
description = 'SerialX json'

SerialX-juss/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*/
4+
5+
plugins {
6+
id 'org.ugp.java-conventions'
7+
}
8+
9+
dependencies {
10+
api project(':core')
11+
}
12+
13+
group = 'org.ugp.serialx'
14+
description = 'SerialX-juss'

SerialX-operators/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*/
4+
5+
plugins {
6+
id 'org.ugp.java-conventions'
7+
}
8+
9+
dependencies {
10+
api project(':core')
11+
}
12+
13+
group = 'org.ugp.serialx'
14+
description = 'SerialX operators'

buildSrc/build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*/
4+
5+
plugins {
6+
// Support convention plugins written in Groovy. Convention plugins are build scripts in 'src/main' that automatically become available as plugins in the main build.
7+
id 'groovy-gradle-plugin'
8+
}
9+
10+
repositories {
11+
// Use the plugin portal to apply community plugins in convention plugins.
12+
gradlePluginPortal()
13+
}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* This file was generated by the Gradle 'init' task.
3+
*/
4+
5+
plugins {
6+
id 'java-library'
7+
id 'maven-publish'
8+
}
9+
10+
11+
repositories {
12+
mavenCentral()
13+
mavenLocal()
14+
maven {
15+
url = uri('https://repo.maven.apache.org/maven2/')
16+
}
17+
}
18+
19+
configurations {
20+
ecj
21+
}
22+
23+
dependencies {
24+
ecj 'org.eclipse.jdt:ecj:3.33.0'
25+
}
26+
27+
group = 'org.ugp'
28+
version = '1.3.7'
29+
30+
java {
31+
sourceCompatibility = "1.8"
32+
targetCompatibility = "1.8"
33+
}
34+
35+
publishing {
36+
publications {
37+
maven(MavenPublication) {
38+
from(components.java)
39+
}
40+
}
41+
}
42+
43+
tasks.withType(JavaCompile) {
44+
options.encoding = 'UTF-8'
45+
}
46+
47+
tasks.withType(Javadoc) {
48+
options.encoding = 'UTF-8'
49+
}

gradle/wrapper/gradle-wrapper.jar

62.2 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)