You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>dubheplatform</artifactId>
- <groupId>zhejianglab</groupId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
-
- <artifactId>dubhe-data</artifactId>
- <name>数据处理</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <argLine>-Dfile.encoding=UTF-8</argLine>
- </properties>
- <dependencies>
- <dependency>
- <groupId>zhejianglab</groupId>
- <artifactId>common</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>zhejianglab</groupId>
- <artifactId>dubhe-system</artifactId>
- <version>1.0</version>
- <scope>compile</scope>
- </dependency>
- <!-- javacv -->
- <dependency>
- <groupId>org.bytedeco</groupId>
- <artifactId>javacv</artifactId>
- <version>1.4.3</version>
- </dependency>
- <dependency>
- <groupId>org.bytedeco.javacpp-presets</groupId>
- <artifactId>ffmpeg-platform</artifactId>
- <version>4.0.2-1.4.3</version>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <!-- Docker maven plugin -->
- <plugin>
- <groupId>com.spotify</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <version>1.2.2</version>
- <configuration>
- <imageName>${project.artifactId}</imageName>
- <dockerDirectory>src/main/docker</dockerDirectory>
- <resources>
- <resource>
- <targetPath>/</targetPath>
- <directory>${project.build.directory}</directory>
- <include>${project.build.finalName}.jar</include>
- </resource>
- </resources>
- </configuration>
- </plugin>
- <!-- Docker maven plugin -->
- </plugins>
- </build>
-
- </project>
|