|
45 | 45 |
|
46 | 46 | <properties> |
47 | 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 48 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
48 | 49 | <springframework.version>3.1.2.RELEASE</springframework.version> |
49 | | - <stomp.version>1.16-bop-patch</stomp.version> |
50 | | - <bop.api.version>1.0</bop.api.version> |
51 | 50 | <slf4j.version>1.6.6</slf4j.version> |
52 | 51 | <java.compiler.version>1.7</java.compiler.version> |
53 | 52 | <bouncycastle.version>1.48</bouncycastle.version> |
54 | | - <spring-data.version>1.1.2.RELEASE</spring-data.version> |
55 | | - <querydsl.version>2.9.0</querydsl.version> |
56 | | - <derby.version>10.9.1.0</derby.version> |
57 | | - <hibernate.version>3.6.9.Final</hibernate.version> |
58 | | - <postgresql.version>9.1-901.jdbc4</postgresql.version> |
59 | | - <leveldbjni.version>1.6.1</leveldbjni.version> |
60 | 53 | <protobuf.version>2.4.1</protobuf.version> |
61 | | - <hibernate-validator.version>4.3.0.Final</hibernate-validator.version> |
62 | 54 | <json.version>20090211</json.version> |
63 | 55 | <commons-cli.version>1.2</commons-cli.version> |
64 | 56 | </properties> |
|
96 | 88 | <plugins> |
97 | 89 | <plugin> |
98 | 90 | <artifactId>maven-compiler-plugin</artifactId> |
99 | | - <version>2.3.2</version> |
| 91 | + <version>3.1</version> |
100 | 92 | <configuration> |
101 | 93 | <source>${java.compiler.version}</source> |
102 | 94 | <target>${java.compiler.version}</target> |
| 95 | + <encoding>UTF-8</encoding> |
103 | 96 | </configuration> |
104 | 97 | </plugin> |
105 | | - <plugin> |
106 | | - <groupId>org.apache.maven.plugins</groupId> |
107 | | - <artifactId>maven-dependency-plugin</artifactId> |
108 | | - <version>2.5.1</version> |
109 | | - <executions> |
110 | | - <execution> |
111 | | - <id>copy-dependencies</id> |
112 | | - <phase>package</phase> |
113 | | - <goals> |
114 | | - <goal>copy-dependencies</goal> |
115 | | - </goals> |
116 | | - <configuration> |
117 | | - <outputDirectory>${project.build.directory}/lib</outputDirectory> |
118 | | - <overWriteReleases>false</overWriteReleases> |
119 | | - <overWriteSnapshots>false</overWriteSnapshots> |
120 | | - <overWriteIfNewer>true</overWriteIfNewer> |
121 | | - <includeScope>runtime</includeScope> |
122 | | - </configuration> |
123 | | - </execution> |
124 | | - </executions> |
125 | | - </plugin> |
126 | | - <plugin> |
127 | | - <groupId>org.apache.maven.plugins</groupId> |
128 | | - <artifactId>maven-source-plugin</artifactId> |
129 | | - </plugin> |
130 | 98 | <plugin> |
131 | 99 | <groupId>org.apache.maven.plugins</groupId> |
132 | 100 | <artifactId>maven-release-plugin</artifactId> |
|
136 | 104 | </configuration> |
137 | 105 | </plugin> |
138 | 106 | </plugins> |
139 | | - <pluginManagement> |
140 | | - <plugins> |
141 | | - <!--This plugin's configuration is used to store Eclipse m2e settings |
142 | | - only. It has no influence on the Maven build itself. --> |
143 | | - <plugin> |
144 | | - <groupId>org.eclipse.m2e</groupId> |
145 | | - <artifactId>lifecycle-mapping</artifactId> |
146 | | - <version>1.0.0</version> |
147 | | - <configuration> |
148 | | - <lifecycleMappingMetadata> |
149 | | - <pluginExecutions> |
150 | | - <pluginExecution> |
151 | | - <pluginExecutionFilter> |
152 | | - <groupId>org.apache.maven.plugins</groupId> |
153 | | - <artifactId>maven-dependency-plugin</artifactId> |
154 | | - <versionRange>[2.5.1,)</versionRange> |
155 | | - <goals> |
156 | | - <goal>copy-dependencies</goal> |
157 | | - </goals> |
158 | | - </pluginExecutionFilter> |
159 | | - <action> |
160 | | - <ignore /> |
161 | | - </action> |
162 | | - </pluginExecution> |
163 | | - </pluginExecutions> |
164 | | - </lifecycleMappingMetadata> |
165 | | - </configuration> |
166 | | - </plugin> |
167 | | - <plugin> |
168 | | - <groupId>org.apache.maven.plugins</groupId> |
169 | | - <artifactId>maven-source-plugin</artifactId> |
170 | | - <version>2.2.1</version> |
171 | | - <executions> |
172 | | - <execution> |
173 | | - <id>attach-sources</id> |
174 | | - <goals> |
175 | | - <goal>jar</goal> |
176 | | - </goals> |
177 | | - </execution> |
178 | | - </executions> |
179 | | - </plugin> |
180 | | - </plugins> |
181 | | - </pluginManagement> |
182 | 107 | <extensions> |
183 | 108 | <extension> |
184 | 109 | <groupId>org.apache.maven.wagon</groupId> |
|
0 commit comments