Skip to content

Commit

Permalink
merge with master
Browse files Browse the repository at this point in the history
  • Loading branch information
brig committed Oct 9, 2023
2 parents a9782e6 + 982b9d0 commit 9cb2581
Show file tree
Hide file tree
Showing 143 changed files with 17,468 additions and 1,211 deletions.
1 change: 1 addition & 0 deletions agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>okhttp</artifactId>
<version>2.7.5</version>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.ws.rs</groupId>
Expand Down
32 changes: 27 additions & 5 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@
<artifactId>concord-client</artifactId>
<packaging>jar</packaging>

<properties>
<swagger.version>1.5.20</swagger.version>
<gson.version>2.10</gson.version>
<gson.fire.version>1.8.3</gson.fire.version>
<okhttp.version>2.7.5</okhttp.version>
<okio.version>1.17.2</okio.version>
</properties>

<dependencies>
<dependency>
<groupId>com.walmartlabs.concord.server</groupId>
Expand All @@ -31,27 +39,40 @@
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>logging-interceptor</artifactId>
<version>${okhttp.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
<version>${okio.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>io.gsonfire</groupId>
<artifactId>gson-fire</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>${swagger.version}</version>
</dependency>
<dependency>
<groupId>io.gsonfire</groupId>
<artifactId>gson-fire</artifactId>
<version>${gson.fire.version}</version>
<exclusions>
<exclusion>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down Expand Up @@ -123,6 +144,7 @@
<plugin>
<groupId>io.swagger</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>2.3.1</version>
<executions>
<execution>
<id>server</id>
Expand All @@ -131,7 +153,7 @@
</goals>
<configuration>
<inputSpec>
${project.basedir}/../server/impl/target/classes/com/walmartlabs/concord/server/swagger/swagger.json
${project.basedir}/swagger.json
</inputSpec>
<language>java</language>
<languageSpecificPrimitives>
Expand Down
Loading

0 comments on commit 9cb2581

Please sign in to comment.