Skip to content

Commit 3a685b3

Browse files
committed
Fix for gradle build
1 parent 1eee507 commit 3a685b3

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

build.gradle

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@
99
plugins {
1010
// Apply the application plugin to add support for building a CLI application in Java.
1111
id 'java-library-distribution'
12+
id 'maven-publish'
1213
}
1314

15+
group = 'com.github.CST-Group'
16+
1417
description = "WS3D-Coppelia"
1518

1619
sourceCompatibility = 1.8
@@ -72,3 +75,11 @@ artifacts
7275
//archives javadocJar, sourcesJar
7376
archives sourcesJar
7477
}
78+
79+
publishing {
80+
publications {
81+
mavenJava(MavenPublication) {
82+
from components.java
83+
}
84+
}
85+
}
Binary file not shown.

0 commit comments

Comments
 (0)