|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
5 | 5 |
|
6 | 6 | <modelVersion>4.0.0</modelVersion> |
7 | | - |
| 7 | + <parent> |
| 8 | + <version>0.5-SNAPSHOT</version> |
| 9 | + <artifactId>unitsofmeasurement-parent</artifactId> |
| 10 | + <groupId>org.unitsofmeasurement</groupId> |
| 11 | + </parent> |
8 | 12 | <groupId>com.opower.unitsofmeasure</groupId> |
9 | 13 | <artifactId>jackson-module-unitsofmeasure</artifactId> |
10 | 14 | <packaging>jar</packaging> |
11 | | - <version>1.1.0</version> |
| 15 | + <version>1.2-SNAPSHOT</version> |
12 | 16 |
|
13 | 17 | <name>Jackson Unit of Measure Module</name> |
14 | 18 | <description>Contains custom serializers and deserializers for org.unitsofmeasurement classes.</description> |
|
20 | 24 | <url>https://github.com/opower/jackson-module-unitsofmeasure/raw/master/repo</url> |
21 | 25 | </repository> |
22 | 26 | </repositories> |
| 27 | + |
| 28 | + <!-- ======================================================= --> |
| 29 | + <!-- Build Settings --> |
| 30 | + <!-- ======================================================= --> |
| 31 | + <properties> |
| 32 | + <project.build.javaVersion>1.7</project.build.javaVersion> |
| 33 | + <jdkVersion>1.7</jdkVersion> |
| 34 | + <maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel> |
| 35 | + <maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel> |
| 36 | + <ri.version>0.2-SNAPSHOT</ri.version> |
| 37 | + <lib.version>0.1-SNAPSHOT</lib.version> |
| 38 | + <jackson.version>2.2.2</jackson.version> |
| 39 | + </properties> |
23 | 40 |
|
24 | 41 | <dependencies> |
25 | 42 | <!-- =========================================================================================================== --> |
|
43 | 60 | <dependency> |
44 | 61 | <groupId>com.fasterxml.jackson.core</groupId> |
45 | 62 | <artifactId>jackson-core</artifactId> |
46 | | - <version>2.2.2</version> |
| 63 | + <version>${jackson.version}</version> |
47 | 64 | </dependency> |
48 | 65 | <dependency> |
49 | 66 | <groupId>com.fasterxml.jackson.core</groupId> |
50 | 67 | <artifactId>jackson-databind</artifactId> |
51 | | - <version>2.2.2</version> |
| 68 | + <version>${jackson.version}</version> |
52 | 69 | </dependency> |
53 | 70 |
|
54 | 71 | <dependency> |
55 | 72 | <groupId>junit</groupId> |
56 | 73 | <artifactId>junit</artifactId> |
57 | | - <version>4.10</version> |
58 | 74 | <scope>test</scope> |
59 | 75 | </dependency> |
60 | 76 | </dependencies> |
|
65 | 81 | <groupId>org.apache.maven.plugins</groupId> |
66 | 82 | <artifactId>maven-compiler-plugin</artifactId> |
67 | 83 | <configuration> |
68 | | - <source>1.6</source> |
69 | | - <target>1.6</target> |
| 84 | + <source>${jdkVersion}</source> |
| 85 | + <target>${jdkVersion}</target> |
70 | 86 | </configuration> |
71 | 87 | </plugin> |
72 | 88 | </plugins> |
|
0 commit comments