Skip to content

Commit

Permalink
Update URLs.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMahdjoub committed Feb 3, 2022
1 parent 304e0f2 commit 31017d7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
8 changes: 4 additions & 4 deletions MaDKitLanEdition/MaDKitLanEditionDemos/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ publishing {
pom {
name = 'Démos for MaDKitLanEdition'
description = 'MaDKit is an open source multiagent-based development platform written in Java. MaDKitLanEdition Advanced network futures which enables to connect several peers between them, and emulate a secured multi-agent system that virtually evolves into the same environment, i.e. the same virtual machine.'
url = 'https://github.com/JazZ51/MaDKitLanEdition'
url = 'https://github.com/JasonMahdjoub/MaDKitLanEdition'
developers {
developer {
id = 'mahdjoub'
Expand All @@ -159,14 +159,14 @@ publishing {

organization {
name = 'DistriMind'
url = 'https://github.com/JazZ51'
url = 'https://github.com/JasonMahdjoub'
}
issueManagement {
system = 'GitHub'
url = 'https://github.com/JazZ51/MaDKitLanEdition/issues'
url = 'https://github.com/JasonMahdjoub/MaDKitLanEdition/issues'
}
scm {
connection = 'https://github.com/JazZ51/MaDKitLanEdition'
connection = 'https://github.com/JasonMahdjoub/MaDKitLanEdition'
}
licenses {
license {
Expand Down
8 changes: 4 additions & 4 deletions MaDKitLanEdition/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ publishing {
pom {
name = 'MaDKitLanEdition'
description = 'MaDKit is an open source multiagent-based development platform written in Java. MaDKitLanEdition Advanced network futures which enables to connect several peers between them, and emulate a secured multi-agent system that virtually evolves into the same environment, i.e. the same virtual machine.'
url = 'https://github.com/JazZ51/MaDKitLanEdition'
url = 'https://github.com/JasonMahdjoub/MaDKitLanEdition'
developers {
developer {
id = 'mahdjoub'
Expand All @@ -246,14 +246,14 @@ publishing {

organization {
name = 'DistriMind'
url = 'https://github.com/JazZ51'
url = 'https://github.com/JasonMahdjoub'
}
issueManagement {
system = 'GitHub'
url = 'https://github.com/JazZ51/MaDKitLanEdition/issues'
url = 'https://github.com/JasonMahdjoub/MaDKitLanEdition/issues'
}
scm {
connection = 'https://github.com/JazZ51/MaDKitLanEdition'
connection = 'https://github.com/JasonMahdjoub/MaDKitLanEdition'
}
licenses {
license {
Expand Down
2 changes: 1 addition & 1 deletion MaDKitLanEdition/madkit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ loadLocalDemos: false
logDirectory: !!file 'logs'
madkitLogLevel: !!logLevel 'INFO'
madkitMainClass: !!class 'com.distrimind.madkit.kernel.Madkit'
madkitRepositoryURL: !!url 'https://github.com/JazZ51/MaDKitLanEdition'
madkitRepositoryURL: !!url 'https://github.com/JasonMahdjoub/MaDKitLanEdition'
madkitVersion:
freeStringProperties: null
m_alpha_beta_version: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,10 @@ static Version getNewVersionInstance()
.addDeveloper(new PersonDeveloper("Michel", "Fabien", "1997-02-01"))
.addDeveloper(new PersonDeveloper("Gutknecht", "Olivier", "1997-02-01"))
.addDeveloper(new PersonDeveloper("Ferber", "Jacques", "1997-02-01"))
.addDescription(new Description((short)2, (short)3, (short)6, Version.Type.STABLE, (short)0, "2022-02-31")
.addDescription(new Description((short)2, (short)3, (short)7, Version.Type.STABLE, (short)0, "2022-02-03")
.addItem(INTERNAL_CHANGE, "Update URLs")
)
.addDescription(new Description((short)2, (short)3, (short)6, Version.Type.STABLE, (short)0, "2022-01-31")
.addItem(INTERNAL_CHANGE, "Do not replace MaDKit properties reference when loading Madkit kernel")
)
.addDescription(new Description((short)2, (short)3, (short)5, Version.Type.STABLE, (short)0, "2022-01-25")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -483,8 +483,8 @@ public MadkitProperties() {
this.minimumMadkitVersion=new Version(madkitVersion.getProgramName(), madkitVersion.getShortProgramName(), (short)2, (short)3, (short)5, Version.Type.STABLE, (short)0, madkitVersion.getProjectStartDate(), madkitVersion.getProjectEndDate());
this.minimumMadkitVersion.setBuildNumber(100);
try {
madkitWeb = new URL("https://github.com/JazZ51/MaDKitLanEdition");
madkitRepositoryURL = new URL("https://github.com/JazZ51/MaDKitLanEdition.git");// new
madkitWeb = new URL("https://github.com/JasonMahdjoub/MaDKitLanEdition");
madkitRepositoryURL = new URL("https://github.com/JasonMahdjoub/MaDKitLanEdition.git");// new
// URL(madkitWeb.toString()+"/repository/"+madkitVersion.getFileHeadName()+"/");
} catch (MalformedURLException e) {
e.printStackTrace();
Expand Down

0 comments on commit 31017d7

Please sign in to comment.