Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 90 additions & 0 deletions bom/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-parent</artifactId>
<version>0.3.1-SNAPSHOT</version>
</parent>
<artifactId>power-server-bom</artifactId>
<packaging>pom</packaging>

<name>power-server : BOM</name>
<description>BOM module for the power-server project</description>

<licenses>
<license>
<name>Apache 2 License</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Christophe Laprun</name>
<email>metacosm@gmail.com</email>
<roles>
<role>author</role>
</roles>
</developer>
</developers>
<inceptionYear>2023</inceptionYear>

<scm>
<connection>scm:git:git://github.com/metacosm/power-server.git</connection>
<developerConnection>scm:git:git@github.com/metacosm/power-server.git</developerConnection>
<url>https://github.com/metacosm/power-server/tree/main</url>
<tag>HEAD</tag>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-analysis</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-backend</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-cli</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-if-manifest-export</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-measure</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-metadata</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server-persistence</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.laprun.sustainability</groupId>
<artifactId>power-server</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

</project>
5 changes: 3 additions & 2 deletions cli/src/main/java/net/laprun/sustainability/cli/Power.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@

//DEPS io.quarkus:quarkus-bom:${quarkus.version:3.29.3}@pom
//DEPS io.quarkus:quarkus-picocli
//DEPS net.laprun.sustainability:power-server-backend:0.3.1-SNAPSHOT
//DEPS net.laprun.sustainability:power-server-measure:0.3.1-SNAPSHOT
//DEPS net.laprun.sustainability:power-server-bom:${power-server.version:0.3.1-SNAPSHOT}@pom
//DEPS net.laprun.sustainability:power-server-backend
//DEPS net.laprun.sustainability:power-server-measure

//Q:CONFIG quarkus.banner.enabled=false
//Q:CONFIG quarkus.log.level=INFO
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
<packaging>pom</packaging>

<name>power-server : parent</name>
<description>An application allowing to retrieve power consumption and associated metadata on a per-process basis,
via a RESTful endpoint</description>
<description>A set of tools and libraries to help measuring the power consumption of applications</description>
<url>https://github.com/metacosm/power-server</url>

<licenses>
Expand Down Expand Up @@ -77,6 +76,7 @@
<module>cli</module>
<module>if-manifest-export</module>
<module>persistence</module>
<module>bom</module>
</modules>

<dependencyManagement>
Expand Down
Loading