Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 778 | blopes | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
||
| 4 | http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||
| 5 | <modelVersion>4.0.0</modelVersion> |
||
| 6 | |||
| 7 | <groupId>br.com.kronus</groupId> |
||
| 8 | <artifactId>kronus-bot</artifactId> |
||
| 9 | <version>1.0-SNAPSHOT</version> |
||
| 10 | <packaging>war</packaging> |
||
| 11 | |||
| 12 | <name>Kronus Trading Bot</name> |
||
| 13 | |||
| 14 | <properties> |
||
| 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
||
| 16 | <maven.compiler.source>1.8</maven.compiler.source> |
||
| 17 | <maven.compiler.target>1.8</maven.compiler.target> |
||
| 18 | <primefaces.version>6.0</primefaces.version> |
||
| 19 | <javaee.version>7.0</javaee.version> |
||
| 20 | </properties> |
||
| 21 | |||
| 22 | <dependencies> |
||
| 23 | <!-- API Java EE (JSF, Servlet etc) fornecida pelo servidor de aplicação --> |
||
| 24 | <dependency> |
||
| 25 | <groupId>javax</groupId> |
||
| 26 | <artifactId>javaee-api</artifactId> |
||
| 27 | <version>${javaee.version}</version> |
||
| 28 | <scope>provided</scope> |
||
| 29 | </dependency> |
||
| 30 | |||
| 31 | <!-- PrimeFaces --> |
||
| 32 | <dependency> |
||
| 33 | <groupId>org.primefaces</groupId> |
||
| 34 | <artifactId>primefaces</artifactId> |
||
| 35 | <version>${primefaces.version}</version> |
||
| 36 | </dependency> |
||
| 37 | </dependencies> |
||
| 38 | |||
| 39 | <build> |
||
| 40 | <finalName>kronus-bot</finalName> |
||
| 41 | <plugins> |
||
| 42 | <plugin> |
||
| 43 | <groupId>org.apache.maven.plugins</groupId> |
||
| 44 | <artifactId>maven-compiler-plugin</artifactId> |
||
| 45 | <version>3.10.1</version> |
||
| 46 | <configuration> |
||
| 47 | <source>${maven.compiler.source}</source> |
||
| 48 | <target>${maven.compiler.target}</target> |
||
| 49 | </configuration> |
||
| 50 | </plugin> |
||
| 51 | </plugins> |
||
| 52 | </build> |
||
| 53 | |||
| 54 | </project> |