summaryrefslogtreecommitdiff
path: root/opendc-web
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2022-04-24 12:50:46 +0200
committerGitHub <noreply@github.com>2022-04-24 12:50:46 +0200
commit44ddd27a745f2dfe4b6ffef1b7657d156dd61489 (patch)
treee418a4aed7951af8b2e477011c253060d645b79d /opendc-web
parenta7a5362c52274e4fef377cf68b53b4399679d304 (diff)
parent6bcca06300900882a8bc1a865f826268873bf3d8 (diff)
merge: Move modules into different groups (#77)
This pull request moves the different modules of OpenDC into different groups. For instance, all submodules of `opendc-compute` are moved into `org.opendc.compute`. This provides a better separation of the artifacts. ## Implementation Notes :hammer_and_pick: * Enable testing for all library modules * Move modules into subgroups * Update to Jandex Gradle 0.12.0 ## External Dependencies :four_leaf_clover: * N/A ## Breaking API Changes :warning: * Each module has now been assigned its own group (e.g., `org.opendc.compute` or `org.opendc.simulator`)
Diffstat (limited to 'opendc-web')
-rw-r--r--opendc-web/build.gradle.kts6
-rw-r--r--opendc-web/opendc-web-client/build.gradle.kts2
2 files changed, 6 insertions, 2 deletions
diff --git a/opendc-web/build.gradle.kts b/opendc-web/build.gradle.kts
index 7edfd134..47b19763 100644
--- a/opendc-web/build.gradle.kts
+++ b/opendc-web/build.gradle.kts
@@ -19,3 +19,9 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
+
+description = "Interactive web interface for OpenDC"
+
+subprojects {
+ group = "org.opendc.web"
+}
diff --git a/opendc-web/opendc-web-client/build.gradle.kts b/opendc-web/opendc-web-client/build.gradle.kts
index f53b29d8..77a0afff 100644
--- a/opendc-web/opendc-web-client/build.gradle.kts
+++ b/opendc-web/opendc-web-client/build.gradle.kts
@@ -25,8 +25,6 @@ description = "Client for the OpenDC web API"
/* Build configuration */
plugins {
`kotlin-library-conventions`
- `testing-conventions`
- `jacoco-conventions`
}
dependencies {