Skip to content

Commit

Permalink
add scm information
Browse files Browse the repository at this point in the history
  • Loading branch information
attiasas committed Aug 11, 2023
1 parent 51d52f6 commit 7fb2f0c
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ gradlePlugin {
implementationClass = 'org.attias.open.interactive.simulation.deployer.SimulationDeployerPlugin'
}
}

}

publishing {
Expand All @@ -35,14 +34,27 @@ publishing {
pom {
name = rootProject.name
description = pluginDescription
url = 'http://www.example.com/library'
url = 'https://github.com/attiasas/open-interactive-simulation-deployer'

licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}

developers {
developer {
id = "attiasas"
name = "Assaf Attias"
}
}

scm {
connection.set("scm:git:git://github.com/attiasas/open-interactive-simulation-deployer.git")
developerConnection.set("scm:git:git@github.com/attiasas/open-interactive-simulation-deployer.git")
url = "https://github.com/attiasas/open-interactive-simulation-deployer"
}
}
}
}
Expand Down

0 comments on commit 7fb2f0c

Please sign in to comment.