long.sort-connector-tubemq.2.0.0.source-code.pom.xml Maven / Gradle / Ivy
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!-- // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF licenses this file to You under the Apache License, Version 2.0 // (the "License"); you may not use this file except in compliance with // the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. --> <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>org.apache.inlong</groupId> <artifactId>inlong-tubemq</artifactId> <version>2.0.0</version> </parent> <artifactId>tubemq-client</artifactId> <name>Apache InLong - TubeMQ Client</name> <description>Client functionality for TubeMQ</description> <properties> <inlong.root.dir>${project.parent.parent.basedir}</inlong.root.dir> </properties> <dependencies> <dependency> <groupId>org.apache.inlong</groupId> <artifactId>tubemq-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito2</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>${plugin.assembly.version}</version> <configuration> <finalName>apache-inlong-tubemq-client-${project.version}</finalName> <descriptors> <descriptor>src/main/assembly/assembly.xml</descriptor> </descriptors> <tarLongFileMode>posix</tarLongFileMode> </configuration> <executions> <execution> <id>make-assembly</id> <goals> <goal>single</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${exec.maven.version}</version> <executions> <execution> <id>version</id> <goals> <goal>exec</goal> </goals> <phase>generate-sources</phase> <configuration> <executable>${executable.file}</executable> <arguments> <argument>${project.version}</argument> <argument>${generated.sources.directory}</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${build.helper.maven.version}</version> <executions> <execution> <goals> <goal>add-source</goal> </goals> <phase>generate-sources</phase> <configuration> <sources> <source>${project.build.directory}/generated-sources/java</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>os.unix</id> <activation> <os> <family>!windows</family> </os> </activation> <properties> <executable.file>${basedir}/src/saveClientVersion.sh</executable.file> <generated.sources.directory>${project.build.directory}/generated-sources/java</generated.sources.directory> </properties> </profile> <profile> <id>os.windows</id> <activation> <os> <family>windows</family> </os> </activation> <properties> <executable.file>${basedir}\src\saveClientVersion.cmd</executable.file> <generated.sources.directory>${project.build.directory}\generated-sources\java</generated.sources.directory> </properties> </profile> </profiles> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy