trace-etl-nginx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>run.mone</groupId> <artifactId>trace-etl-nginx</artifactId> <version>1.0.1-jdk21</version> </dependency>
<?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"> <parent> <artifactId>trace-etl</artifactId> <groupId>run.mone</groupId> <version>1.0.1-jdk21</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>trace-etl-nginx</artifactId> <dependencies> <dependency> <artifactId>trace-etl-service</artifactId> <groupId>run.mone</groupId> <version>${project.parent.version}</version> <exclusions> <exclusion> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> </exclusion> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.7.15</version> <configuration> <mainClass>com.xiaomi.hera.trace.etl.nginx.bootstrap.TraceEtlNginxBootstrap</mainClass> </configuration> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>opensource-outer</id> <properties> <profiles.active>opensource-outer</profiles.active> </properties> <build> <filters> <filter>src/main/resources/config/opensource-outer.properties</filter> </filters> </build> </profile> </profiles> </project>