|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>in.strollup.fb</groupId> |
| 5 | + <artifactId>bot</artifactId> |
| 6 | + <packaging>war</packaging> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + <name>Fb Bot in Java</name> |
| 9 | + <url>http://maven.apache.org</url> |
| 10 | + <dependencies> |
| 11 | + <dependency> |
| 12 | + <groupId>junit</groupId> |
| 13 | + <artifactId>junit</artifactId> |
| 14 | + <version>3.8.1</version> |
| 15 | + <scope>test</scope> |
| 16 | + </dependency> |
| 17 | + <dependency> |
| 18 | + <groupId>org.apache.httpcomponents</groupId> |
| 19 | + <artifactId>httpclient</artifactId> |
| 20 | + <version>4.3.6</version> |
| 21 | + </dependency> |
| 22 | + <dependency> |
| 23 | + <groupId>javax.servlet</groupId> |
| 24 | + <artifactId>servlet-api</artifactId> |
| 25 | + <version>2.5</version> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>com.google.code.gson</groupId> |
| 29 | + <artifactId>gson</artifactId> |
| 30 | + <version>2.7</version> |
| 31 | + </dependency> |
| 32 | +<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> |
| 33 | +<dependency> |
| 34 | + <groupId>org.apache.commons</groupId> |
| 35 | + <artifactId>commons-lang3</artifactId> |
| 36 | + <version>3.4</version> |
| 37 | +</dependency> |
| 38 | + |
| 39 | + </dependencies> |
| 40 | + <build> |
| 41 | + <plugins> |
| 42 | + <plugin> |
| 43 | + <groupId>org.mortbay.jetty</groupId> |
| 44 | + <artifactId>maven-jetty-plugin</artifactId> |
| 45 | + <version>6.1.10</version> |
| 46 | + <configuration> |
| 47 | + <scanIntervalSeconds>30000</scanIntervalSeconds> |
| 48 | + </configuration> |
| 49 | + </plugin> |
| 50 | + |
| 51 | + <plugin> |
| 52 | + <groupId>org.apache.maven.plugins</groupId> |
| 53 | + <artifactId>maven-surefire-plugin</artifactId> |
| 54 | + <version>2.12.4</version> |
| 55 | + <configuration> |
| 56 | + <skipTests>true</skipTests> |
| 57 | + </configuration> |
| 58 | + </plugin> |
| 59 | + |
| 60 | + <plugin> |
| 61 | + <groupId>org.apache.maven.plugins</groupId> |
| 62 | + <artifactId>maven-compiler-plugin</artifactId> |
| 63 | + <version>2.3.2</version> |
| 64 | + <configuration> |
| 65 | + <source>1.7</source> |
| 66 | + <target>1.7</target> |
| 67 | + <encoding>UTF-8</encoding> |
| 68 | + </configuration> |
| 69 | + </plugin> |
| 70 | + </plugins> |
| 71 | + </build> |
| 72 | + |
| 73 | +</project> |
0 commit comments