|
1 | | -<?xml version="1.0" encoding="UTF-8"?> |
2 | | -<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/maven-v4_0_0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - |
5 | | - <groupId>com.flickr4java</groupId> |
6 | | - <artifactId>flickr</artifactId> |
7 | | - <version>${flickr4javaVersion}</version> |
8 | | - <packaging>jar</packaging> |
9 | | - <name>flickr4java</name> |
10 | | - |
11 | | - <properties> |
12 | | - <flickr4javaVersion>2.4</flickr4javaVersion> |
13 | | - <javaVersion>1.6</javaVersion> |
14 | | - <log4jVersion>1.2.17</log4jVersion> |
15 | | - <junitVersion>4.11</junitVersion> |
16 | | - </properties> |
17 | | - |
18 | | - <dependencies> |
19 | | - <dependency> |
20 | | - <groupId>org.scribe</groupId> |
21 | | - <artifactId>scribe</artifactId> |
22 | | - <version>1.3.5</version> |
23 | | - </dependency> |
24 | | - <dependency> |
25 | | - <groupId>org.apache.axis</groupId> |
26 | | - <artifactId>axis</artifactId> |
27 | | - <version>1.4</version> |
28 | | - </dependency> |
29 | | - <dependency> |
30 | | - <groupId>log4j</groupId> |
31 | | - <artifactId>log4j</artifactId> |
32 | | - <version>${log4jVersion}</version> |
33 | | - <!-- <scope>provided</scope> --> |
34 | | - </dependency> |
35 | | - <dependency> |
36 | | - <groupId>junit</groupId> |
37 | | - <artifactId>junit</artifactId> |
38 | | - <version>${junitVersion}</version> |
39 | | - <scope>test</scope> |
40 | | - </dependency> |
41 | | - </dependencies> |
42 | | - |
43 | | - <build> |
44 | | - <plugins> |
45 | | - <plugin> |
46 | | - <groupId>org.apache.maven.plugins</groupId> |
47 | | - <artifactId>maven-compiler-plugin</artifactId> |
48 | | - <version>2.3.2</version> |
49 | | - <configuration> |
50 | | - <source>${javaVersion}</source> |
51 | | - <target>${javaVersion}</target> |
52 | | - </configuration> |
53 | | - </plugin> |
54 | | - </plugins> |
55 | | - |
56 | | - <resources> |
57 | | - <resource> |
58 | | - <directory>src/main/resources</directory> |
59 | | - <includes> |
60 | | - <include>**/*</include> |
61 | | - </includes> |
62 | | - </resource> |
63 | | - <resource> |
64 | | - <filtering>true</filtering> |
65 | | - <directory>src/main/resources</directory> |
66 | | - </resource> |
67 | | - </resources> |
68 | | - </build> |
69 | | - |
70 | | -</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>com.flickr4java</groupId> |
| 6 | + <artifactId>flickr</artifactId> |
| 7 | + <version>${flickr4javaVersion}</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + <name>flickr4java</name> |
| 10 | + |
| 11 | + <properties> |
| 12 | + <flickr4javaVersion>2.4</flickr4javaVersion> |
| 13 | + <javaVersion>1.6</javaVersion> |
| 14 | + <log4jVersion>1.2.17</log4jVersion> |
| 15 | + <junitVersion>4.11</junitVersion> |
| 16 | + </properties> |
| 17 | + |
| 18 | + <dependencies> |
| 19 | + <dependency> |
| 20 | + <groupId>org.scribe</groupId> |
| 21 | + <artifactId>scribe</artifactId> |
| 22 | + <version>1.3.5</version> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>org.apache.axis</groupId> |
| 26 | + <artifactId>axis</artifactId> |
| 27 | + <version>1.4</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>log4j</groupId> |
| 31 | + <artifactId>log4j</artifactId> |
| 32 | + <version>${log4jVersion}</version> |
| 33 | + <!-- <scope>provided</scope> --> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>junit</groupId> |
| 37 | + <artifactId>junit</artifactId> |
| 38 | + <version>${junitVersion}</version> |
| 39 | + <scope>test</scope> |
| 40 | + </dependency> |
| 41 | + </dependencies> |
| 42 | + |
| 43 | + <build> |
| 44 | + <plugins> |
| 45 | + <plugin> |
| 46 | + <groupId>org.apache.maven.plugins</groupId> |
| 47 | + <artifactId>maven-compiler-plugin</artifactId> |
| 48 | + <version>2.3.2</version> |
| 49 | + <configuration> |
| 50 | + <source>${javaVersion}</source> |
| 51 | + <target>${javaVersion}</target> |
| 52 | + </configuration> |
| 53 | + </plugin> |
| 54 | + </plugins> |
| 55 | + |
| 56 | + <resources> |
| 57 | + <resource> |
| 58 | + <directory>src/main/resources</directory> |
| 59 | + <includes> |
| 60 | + <include>**/*</include> |
| 61 | + </includes> |
| 62 | + </resource> |
| 63 | + <resource> |
| 64 | + <filtering>true</filtering> |
| 65 | + <directory>src/main/resources</directory> |
| 66 | + </resource> |
| 67 | + </resources> |
| 68 | + </build> |
| 69 | + |
| 70 | +</project> |
0 commit comments