Skip to content

Commit

Permalink
Update slf4j install locations
Browse files Browse the repository at this point in the history
  • Loading branch information
webb-ben committed Jan 27, 2025
1 parent 614fb3c commit 974aacb
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 5 deletions.
9 changes: 4 additions & 5 deletions FROST-Server.HTTP/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -123,11 +127,6 @@
<artifactId>mariadb-java-client</artifactId>
<version>${version.mariadb}</version>
</artifactItem>
<artifactItem>
<groupId>com.google.cloud.sql</groupId>
<artifactId>postgres-socket-factory</artifactId>
<version>${version.socketfactory}</version>
</artifactItem>
</artifactItems>
</configuration>
</execution>
Expand Down
15 changes: 15 additions & 0 deletions FROST-Server.MQTTP/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,21 @@
<artifactId>postgres-socket-factory</artifactId>
<version>${version.socketfactory}</version>
</artifactItem>
<artifactItem>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-jdbc-core</artifactId>
<version>${version.socketfactory}</version>
</artifactItem>
<artifactItem>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>${version.slf4j-api}</version>
</artifactItem>
<artifactItem>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${version.slf4j-api}</version>
</artifactItem>
</artifactItems>
</configuration>
</execution>
Expand Down
12 changes: 12 additions & 0 deletions FROST-Server.SQLjooq/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-jdbc-core</artifactId>
</dependency>
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>postgres-socket-factory</artifactId>
Expand Down Expand Up @@ -94,10 +98,18 @@
<artifactId>postgresql</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-jdbc-core</artifactId>
<version>${version.socketfactory}</version>
</dependency>
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>postgres-socket-factory</artifactId>
Expand Down Expand Up @@ -382,6 +387,11 @@
<artifactId>slf4j-api</artifactId>
<version>${version.slf4j-api}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${version.slf4j-api}</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
Expand Down

0 comments on commit 974aacb

Please sign in to comment.