Skip to content
Open
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
20 changes: 20 additions & 0 deletions chaos/chaos-api/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?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>run.mone</groupId>
<artifactId>chaos</artifactId>
<version>1.4.0-jdk21-SNAPSHOT</version>
</parent>

<artifactId>chaos-api</artifactId>

<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
224 changes: 224 additions & 0 deletions chaos/chaos-service/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,224 @@
<?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>run.mone</groupId>
<artifactId>chaos</artifactId>
<version>1.4.0-jdk21-SNAPSHOT</version>
</parent>

<artifactId>chaos-service</artifactId>

<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty</artifactId>
<version>1.60.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>1.60.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>1.60.0</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.21</version>
</dependency>

<dependency>
<groupId>run.mone</groupId>
<artifactId>docean</artifactId>
<version>1.5.0-jdk21-SNAPSHOT</version>
</dependency>


<dependency>
<groupId>run.mone</groupId>
<artifactId>docean-plugin-k8s</artifactId>
<version>1.4-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>run.mone</groupId>
<artifactId>docean-plugin-configuration</artifactId>
<version>1.4-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>run.mone</groupId>
<artifactId>docean-plugin-dubbo</artifactId>
</dependency>

<dependency>
<groupId>run.mone</groupId>
<artifactId>dubbo</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency>
<artifactId>mi-tpclogin-sdk</artifactId>
<groupId>run.mone</groupId>
<version>1.0.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>run.mone</groupId>
<artifactId>mi-tpc-api</artifactId>
<version>1.0.0</version>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.2</version>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.1.2</version>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>

<dependency>
<groupId>run.mone</groupId>
<artifactId>nacos</artifactId>
<version>1.4-SNAPSHOT</version>
<exclusions>
<exclusion>
<artifactId>nacos-client</artifactId>
<groupId>com.alibaba.nacos</groupId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>run.mone</groupId>
<artifactId>nacos-client</artifactId>
<version>1.2.1-mone-v3-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>

<dependency>
<groupId>dev.morphia.morphia</groupId>
<artifactId>core</artifactId>
<version>1.6.1</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>run.mone</groupId>
<artifactId>docean-plugin-nacos</artifactId>
</dependency>

<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>

<dependency>
<groupId>run.mone</groupId>
<artifactId>log-common</artifactId>
<version>1.4.0-jdk21</version>
</dependency>

<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</dependency>

</dependencies>

<build>
<plugins>

</plugins>

<extensions>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.5.0.Final</version>
</extension>
</extensions>
</build>

<profiles>
<profile>
<id>staging</id>
<properties>
<profiles.active>staging</profiles.active>
</properties>
<build>
<filters>
<filter>src/main/resources/config/staging.properties</filter>
</filters>
</build>
</profile>

<profile>
<id>dev</id>
<properties>
<profiles.active>dev</profiles.active>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<filters>
<filter>src/main/resources/config/dev.properties</filter>
</filters>
</build>
</profile>

<profile>
<id>online</id>
<properties>
<profiles.active>online</profiles.active>
</properties>
<build>
<filters>
<filter>src/main/resources/config/online.properties</filter>
</filters>
</build>
</profile>
</profiles>

</project>
Loading