-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide artifact name and description for each module required during…
… publishing
- Loading branch information
Showing
21 changed files
with
221 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,7 @@ configure(subprojects.findAll { it.name != 'example' }) { | |
|
||
configure([project("tree-showing"), project("jpro-auth:core"), project("jpro-auth:routing"), project("jpro-file"), | ||
project("jpro-image-manager"), project("jpro-mail"), project("jpro-mdfx"), project("jpro-media"), | ||
project("jpro-scenegraph"), project("jpro-session"), | ||
project("jpro-scenegraph"), project("jpro-session"), project("jpro-sipjs"), | ||
project("jpro-html-scrollpane"), project("freeze-detector"), project("jpro-routing:core"), | ||
project("jpro-routing:dev"), project("jpro-routing:popup"), project("jpro-webrtc"), project("jpro-youtube"), | ||
project("internal:openlink"), project("internal:util")]) { | ||
|
@@ -103,13 +103,25 @@ configure([project("tree-showing"), project("jpro-auth:core"), project("jpro-aut | |
from components.java | ||
|
||
pom { | ||
url = 'https://www.jpro.one' | ||
|
||
licenses { | ||
license { | ||
name = 'Apache License, Version 2.0' | ||
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt' | ||
} | ||
} | ||
|
||
developers { | ||
developer { | ||
id = 'jpro' | ||
name = 'JPro Team' | ||
email = '[email protected]' | ||
organization = 'JPro-one' | ||
organizationUrl = 'https://www.jpro.one' | ||
} | ||
} | ||
|
||
scm { | ||
connection = 'scm:git:https://github.com/JPro-one/jpro-platform.git' | ||
developerConnection = 'scm:git:https://github.com/JPro-one/jpro-platform.git' | ||
|
@@ -130,14 +142,14 @@ configure([project("tree-showing"), project("jpro-auth:core"), project("jpro-aut | |
} | ||
|
||
repositories { | ||
maven { | ||
name = "artifactory" | ||
url = "https://sandec.jfrog.io/artifactory/repo" | ||
credentials { | ||
username System.getenv("SANDEC_ARTIFACTORY_USERNAME") | ||
password System.getenv("SANDEC_ARTIFACTORY_PASSWORD") | ||
} | ||
} | ||
// maven { | ||
// name = "artifactory" | ||
// url = "https://sandec.jfrog.io/artifactory/repo" | ||
// credentials { | ||
// username System.getenv("SANDEC_ARTIFACTORY_USERNAME") | ||
// password System.getenv("SANDEC_ARTIFACTORY_PASSWORD") | ||
// } | ||
// } | ||
maven { | ||
name = 'publish-bundle' | ||
url = layout.buildDirectory.dir('publish-bundle') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,18 +16,10 @@ publishing { | |
publications { | ||
mavenJava(MavenPublication) { | ||
pom { | ||
packaging = 'jar' | ||
name = 'JPro Auth Core' | ||
description = 'Core library for authenticating and authorizing users.' | ||
url = 'https://www.jpro.one' | ||
|
||
developers { | ||
developer { | ||
id = 'besidev' | ||
name = 'Besmir Beqiri' | ||
email = '[email protected]' | ||
} | ||
} | ||
description = 'A module for adding advanced authentication and authorization to JPro/JavaFX ' + | ||
'applications, supporting OAuth 2.0, OpenID Connect, integration with multiple identity ' + | ||
'providers and asynchronous operations for enhanced performance.' | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,18 +8,8 @@ publishing { | |
publications { | ||
mavenJava(MavenPublication) { | ||
pom { | ||
packaging = 'jar' | ||
name = 'JPro Auth Routing' | ||
description = 'A library that makes it easy to combine and use the auth and routing functionalities.' | ||
url = 'https://www.jpro.one' | ||
|
||
developers { | ||
developer { | ||
id = 'besidev' | ||
name = 'Besmir Beqiri' | ||
email = '[email protected]' | ||
} | ||
} | ||
description = 'A module that makes it easy to combine and use the authentication and routing functionalities.' | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,19 +37,9 @@ publishing { | |
} | ||
|
||
pom { | ||
packaging = 'jar' | ||
name = 'JPro File' | ||
description = 'A library for handling file related operations in JavaFX applications ' + | ||
description = 'A module for handling file related operations in JPro/JavaFX applications ' + | ||
'running natively and via JPro server.' | ||
url = 'https://www.jpro.one' | ||
|
||
developers { | ||
developer { | ||
id = 'besidev' | ||
name = 'Besmir Beqiri' | ||
email = '[email protected]' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,19 +68,8 @@ publishing { | |
} | ||
|
||
pom { | ||
packaging = 'jar' | ||
name = 'JPro Media' | ||
description = 'A library for playing audio and video files in JavaFX applications running natively ' + | ||
'and via JPro server.' | ||
url = 'https://www.jpro.one' | ||
|
||
developers { | ||
developer { | ||
id = 'besidev' | ||
name = 'Besmir Beqiri' | ||
email = '[email protected]' | ||
} | ||
} | ||
description = 'A module for playing audio and video files in JPro/JavaFX applications.' | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
publishing { | ||
publications { | ||
mavenJava(MavenPublication) { | ||
pom { | ||
name = 'JPro Scenegraph' | ||
description = 'A module that serializes a scene graph to a string representation making it both ' + | ||
'human and AI friendly.' | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.