Created
October 3, 2017 23:36
-
-
Save washingtonsoares/40de9ac4ac21893bbc6dc29b0e5e3971 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> | |
<groupId>projeto01-sd</groupId> | |
<artifactId>projetosd</artifactId> | |
<version>1.0-0</version> | |
<dependencies> | |
<!-- https://mvnrepository.com/artifact/org.apache.thrift/libthrift --> | |
<dependency> | |
<groupId>org.apache.thrift</groupId> | |
<artifactId>libthrift</artifactId> | |
<version>0.10.0</version> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>1.7.21</version> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.apache.thrift/thrift-maven-plugin --> | |
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple --> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-simple</artifactId> | |
<version>1.7.21</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
<properties> | |
<maven.compiler.source>1.8</maven.compiler.source> | |
<maven.compiler.target>1.8</maven.compiler.target> | |
</properties> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.7.0</version> | |
</plugin> | |
<plugin> | |
<artifactId>maven-assembly-plugin</artifactId> | |
<version>3.0.0</version> | |
<configuration> | |
<archive> | |
<manifest> | |
<mainClass>chavevalor.ChaveValorClient</mainClass> | |
</manifest> | |
</archive> | |
<descriptorRefs> | |
<descriptorRef>jar-with-dependencies</descriptorRef> | |
</descriptorRefs> | |
</configuration> | |
<executions> | |
<execution> | |
<phase>package</phase> | |
<goals> | |
<goal>single</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment