Advertisement
Guest User

Untitled

a guest
Jun 10th, 2013
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 53.93 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3.    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4.   <modelVersion>4.0.0</modelVersion>
  5.   <parent>
  6.     <groupId>com.prosodie.ppptr</groupId>
  7.     <artifactId>ppptr-services</artifactId>
  8.     <version>0.0.1-SNAPSHOT</version>
  9.   </parent>
  10.   <groupId>com.prosodie.ppptr</groupId>
  11.   <artifactId>ppptr-services-impl</artifactId>
  12.   <version>0.0.1-SNAPSHOT</version>
  13.   <name>PPPTR - Services - Implementation</name>
  14.   <description>Implémentation de référence de la couche des services métiers</description>
  15.   <properties>
  16.     <spring.version>3.2.3.RELEASE</spring.version>
  17.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18.   </properties>
  19.   <dependencyManagement>
  20.     <dependencies>
  21.       <dependency>
  22.         <groupId>org.springframework</groupId>
  23.         <artifactId>spring-test</artifactId>
  24.         <version>3.2.3.RELEASE</version>
  25.         <scope>test</scope>
  26.       </dependency>
  27.       <dependency>
  28.         <groupId>junit</groupId>
  29.         <artifactId>junit</artifactId>
  30.         <version>4.11</version>
  31.         <scope>test</scope>
  32.       </dependency>
  33.       <dependency>
  34.         <groupId>org.mockito</groupId>
  35.         <artifactId>mockito-all</artifactId>
  36.         <version>1.9.5</version>
  37.         <scope>test</scope>
  38.       </dependency>
  39.       <dependency>
  40.         <groupId>ch.qos.logback</groupId>
  41.         <artifactId>logback-core</artifactId>
  42.         <version>1.0.3</version>
  43.       </dependency>
  44.       <dependency>
  45.         <groupId>ch.qos.logback</groupId>
  46.         <artifactId>logback-classic</artifactId>
  47.         <version>1.0.3</version>
  48.       </dependency>
  49.     </dependencies>
  50.   </dependencyManagement>
  51.   <dependencies>
  52.     <dependency>
  53.       <groupId>org.springframework</groupId>
  54.       <artifactId>spring-context</artifactId>
  55.       <version>3.2.3.RELEASE</version>
  56.       <scope>compile</scope>
  57.     </dependency>
  58.     <dependency>
  59.       <groupId>com.prosodie.ppptr</groupId>
  60.       <artifactId>ppptr-services-api</artifactId>
  61.       <version>0.0.1-SNAPSHOT</version>
  62.       <scope>compile</scope>
  63.     </dependency>
  64.     <dependency>
  65.       <groupId>com.prosodie.ppptr</groupId>
  66.       <artifactId>ppptr-dao-api</artifactId>
  67.       <version>0.0.1-SNAPSHOT</version>
  68.       <scope>compile</scope>
  69.     </dependency>
  70.     <dependency>
  71.       <groupId>org.hibernate</groupId>
  72.       <artifactId>hibernate-validator</artifactId>
  73.       <version>5.0.1.Final</version>
  74.       <scope>compile</scope>
  75.     </dependency>
  76.     <dependency>
  77.       <groupId>com.prosodie.ppptr</groupId>
  78.       <artifactId>ppptr-dao-impl</artifactId>
  79.       <version>0.0.1-SNAPSHOT</version>
  80.       <scope>runtime</scope>
  81.     </dependency>
  82.     <dependency>
  83.       <groupId>com.prosodie.ppptr</groupId>
  84.       <artifactId>ppptr-commons</artifactId>
  85.       <version>0.0.1-SNAPSHOT</version>
  86.       <scope>compile</scope>
  87.     </dependency>
  88.     <dependency>
  89.       <groupId>org.springframework</groupId>
  90.       <artifactId>spring-test</artifactId>
  91.       <version>3.2.3.RELEASE</version>
  92.       <scope>test</scope>
  93.     </dependency>
  94.     <dependency>
  95.       <groupId>junit</groupId>
  96.       <artifactId>junit</artifactId>
  97.       <version>4.11</version>
  98.       <scope>test</scope>
  99.     </dependency>
  100.     <dependency>
  101.       <groupId>org.mockito</groupId>
  102.       <artifactId>mockito-all</artifactId>
  103.       <version>1.9.5</version>
  104.       <scope>test</scope>
  105.     </dependency>
  106.   </dependencies>
  107.   <repositories>
  108.     <repository>
  109.       <snapshots>
  110.         <enabled>false</enabled>
  111.       </snapshots>
  112.       <id>central</id>
  113.       <name>Central Repository</name>
  114.       <url>http://repo.maven.apache.org/maven2</url>
  115.     </repository>
  116.   </repositories>
  117.   <pluginRepositories>
  118.     <pluginRepository>
  119.       <releases>
  120.         <updatePolicy>never</updatePolicy>
  121.       </releases>
  122.       <snapshots>
  123.         <enabled>false</enabled>
  124.       </snapshots>
  125.       <id>central</id>
  126.       <name>Central Repository</name>
  127.       <url>http://repo.maven.apache.org/maven2</url>
  128.     </pluginRepository>
  129.   </pluginRepositories>
  130.   <build>
  131.     <sourceDirectory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\src\main\java</sourceDirectory>
  132.     <scriptSourceDirectory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\src\main\scripts</scriptSourceDirectory>
  133.     <testSourceDirectory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\src\test\java</testSourceDirectory>
  134.     <outputDirectory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\target\classes</outputDirectory>
  135.     <testOutputDirectory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\target\test-classes</testOutputDirectory>
  136.     <resources>
  137.       <resource>
  138.         <directory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\src\main\resources</directory>
  139.       </resource>
  140.     </resources>
  141.     <testResources>
  142.       <testResource>
  143.         <directory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\src\test\resources</directory>
  144.       </testResource>
  145.     </testResources>
  146.     <directory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\target</directory>
  147.     <finalName>ppptr-services-impl-0.0.1-SNAPSHOT</finalName>
  148.     <pluginManagement>
  149.       <plugins>
  150.         <plugin>
  151.           <artifactId>maven-antrun-plugin</artifactId>
  152.           <version>1.3</version>
  153.         </plugin>
  154.         <plugin>
  155.           <artifactId>maven-assembly-plugin</artifactId>
  156.           <version>2.2-beta-5</version>
  157.         </plugin>
  158.         <plugin>
  159.           <artifactId>maven-dependency-plugin</artifactId>
  160.           <version>2.1</version>
  161.         </plugin>
  162.         <plugin>
  163.           <artifactId>maven-release-plugin</artifactId>
  164.           <version>2.0</version>
  165.         </plugin>
  166.         <plugin>
  167.           <artifactId>maven-compiler-plugin</artifactId>
  168.           <version>3.0</version>
  169.           <configuration>
  170.             <source>1.7</source>
  171.             <target>1.7</target>
  172.           </configuration>
  173.         </plugin>
  174.         <plugin>
  175.           <groupId>org.apache.tomcat.maven</groupId>
  176.           <artifactId>tomcat7-maven-plugin</artifactId>
  177.           <version>2.0</version>
  178.         </plugin>
  179.         <plugin>
  180.           <artifactId>maven-eclipse-plugin</artifactId>
  181.           <version>2.7</version>
  182.           <configuration>
  183.             <downloadSources>true</downloadSources>
  184.             <additionalConfig>
  185.               <file>
  186.                 <name>.settings/org.eclipse.jdt.ui.prefs</name>
  187.                 <content>eclipse.preferences.version=1
  188. cleanup.add_default_serial_version_id=false
  189. cleanup.add_generated_serial_version_id=true
  190. cleanup.add_missing_annotations=true
  191. cleanup.add_missing_deprecated_annotations=true
  192. cleanup.add_missing_methods=false
  193. cleanup.add_missing_nls_tags=false
  194. cleanup.add_missing_override_annotations=true
  195. cleanup.add_missing_override_annotations_interface_methods=true
  196. cleanup.add_serial_version_id=true
  197. cleanup.always_use_blocks=true
  198. cleanup.always_use_parentheses_in_expressions=false
  199. cleanup.always_use_this_for_non_static_field_access=false
  200. cleanup.always_use_this_for_non_static_method_access=false
  201. cleanup.convert_to_enhanced_for_loop=true
  202. cleanup.correct_indentation=true
  203. cleanup.format_source_code=true
  204. cleanup.format_source_code_changes_only=false
  205. cleanup.make_local_variable_final=true
  206. cleanup.make_parameters_final=false
  207. cleanup.make_private_fields_final=true
  208. cleanup.make_type_abstract_if_missing_method=false
  209. cleanup.make_variable_declarations_final=true
  210. cleanup.never_use_blocks=false
  211. cleanup.never_use_parentheses_in_expressions=true
  212. cleanup.organize_imports=true
  213. cleanup.qualify_static_field_accesses_with_declaring_class=false
  214. cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true
  215. cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true
  216. cleanup.qualify_static_member_accesses_with_declaring_class=true
  217. cleanup.qualify_static_method_accesses_with_declaring_class=false
  218. cleanup.remove_private_constructors=true
  219. cleanup.remove_trailing_whitespaces=true
  220. cleanup.remove_trailing_whitespaces_all=true
  221. cleanup.remove_trailing_whitespaces_ignore_empty=false
  222. cleanup.remove_unnecessary_casts=true
  223. cleanup.remove_unnecessary_nls_tags=true
  224. cleanup.remove_unused_imports=true
  225. cleanup.remove_unused_local_variables=false
  226. cleanup.remove_unused_private_fields=true
  227. cleanup.remove_unused_private_members=false
  228. cleanup.remove_unused_private_methods=true
  229. cleanup.remove_unused_private_types=true
  230. cleanup.sort_members=false
  231. cleanup.sort_members_all=false
  232. cleanup.use_blocks=true
  233. cleanup.use_blocks_only_for_return_and_throw=false
  234. cleanup.use_parentheses_in_expressions=false
  235. cleanup.use_this_for_non_static_field_access=false
  236. cleanup.use_this_for_non_static_field_access_only_if_necessary=true
  237. cleanup.use_this_for_non_static_method_access=false
  238. cleanup.use_this_for_non_static_method_access_only_if_necessary=true
  239. cleanup_profile=_PPPTR CleanUp
  240. cleanup_settings_version=2
  241. eclipse.preferences.version=1
  242. editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true
  243. formatter_profile=_PPPTR Formatter
  244. formatter_settings_version=12
  245. org.eclipse.jdt.ui.ignorelowercasenames=true
  246. org.eclipse.jdt.ui.importorder=java;javax;org;com;
  247. org.eclipse.jdt.ui.javadoc=false
  248. org.eclipse.jdt.ui.ondemandthreshold=99
  249. org.eclipse.jdt.ui.staticondemandthreshold=99
  250. org.eclipse.jdt.ui.text.custom_code_templates=&lt;?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>&lt;templates>&lt;template autoinsert\="true" context\="gettercomment_context" deleted\="false" description\="Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercomment" name\="gettercomment">/**\r\n * @return the ${bare_field_name}\r\n */&lt;/template>&lt;template autoinsert\="true" context\="settercomment_context" deleted\="false" description\="Comment for setter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.settercomment" name\="settercomment">/**\r\n * @param ${param} the ${bare_field_name} to set\r\n */&lt;/template>&lt;template autoinsert\="true" context\="constructorcomment_context" deleted\="false" description\="Comment for created constructors" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.constructorcomment" name\="constructorcomment">/**\r\n * ${tags}\r\n */&lt;/template>&lt;template autoinsert\="true" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * \r\n */&lt;/template>&lt;template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n *\r\n * SVN-Author   \: $$LastChangedBy: jmartin $$\r\n * SVN-Date     \: $$LastChangedDate: 2013-06-06 15:14:24 +0200 (Thu, 06 Jun 2013) $$\r\n * SVN-Revision \: $$LastChangedRevision: 67 $$\r\n * SVN-Header   \: $$HeadURL: https://svn.prosodie/SSMF/trunk/ppptr-parent/pom.xml $$\r\n * SVN-Id       \: $$Id: pom.xml 67 2013-06-06 13:14:24Z jmartin $$\r\n * ${tags}\r\n */&lt;/template>&lt;template autoinsert\="true" context\="fieldcomment_context" deleted\="false" description\="Comment for fields" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.fieldcomment" name\="fieldcomment">/**\r\n * \r\n */&lt;/template>&lt;template autoinsert\="true" context\="methodcomment_context" deleted\="false" description\="Comment for non-overriding methods" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.methodcomment" name\="methodcomment">/**\r\n * ${tags}\r\n */&lt;/template>&lt;template autoinsert\="true" context\="overridecomment_context" deleted\="false" description\="Comment for overriding methods" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.overridecomment" name\="overridecomment">/* (non-Javadoc)\r\n * ${see_to_overridden}\r\n */&lt;/template>&lt;template autoinsert\="true" context\="delegatecomment_context" deleted\="false" description\="Comment for delegate methods" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.delegatecomment" name\="delegatecomment">/**\r\n * ${tags}\r\n * ${see_to_target}\r\n */&lt;/template>&lt;template autoinsert\="true" context\="newtype_context" deleted\="false" description\="Newly created files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.newtype" name\="newtype">${filecomment}\r\n${package_declaration}\r\n\r\n${typecomment}\r\n${type_declaration}&lt;/template>&lt;template autoinsert\="true" context\="classbody_context" deleted\="false" description\="Code in new class type bodies" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.classbody" name\="classbody">\r\n&lt;/template>&lt;template autoinsert\="true" context\="interfacebody_context" deleted\="false" description\="Code in new interface type bodies" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.interfacebody" name\="interfacebody">\r\n&lt;/template>&lt;template autoinsert\="true" context\="enumbody_context" deleted\="false" description\="Code in new enum type bodies" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.enumbody" name\="enumbody">\r\n&lt;/template>&lt;template autoinsert\="true" context\="annotationbody_context" deleted\="false" description\="Code in new annotation type bodies" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.annotationbody" name\="annotationbody">\r\n&lt;/template>&lt;template autoinsert\="true" context\="catchblock_context" deleted\="false" description\="Code in new catch blocks" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.catchblock" name\="catchblock">// ${todo} Auto-generated catch block\r\n${exception_var}.printStackTrace();&lt;/template>&lt;template autoinsert\="true" context\="methodbody_context" deleted\="false" description\="Code in created method stubs" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.methodbody" name\="methodbody">// ${todo} Auto-generated method stub\r\n${body_statement}&lt;/template>&lt;template autoinsert\="true" context\="constructorbody_context" deleted\="false" description\="Code in created constructor stubs" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.constructorbody" name\="constructorbody">${body_statement}\r\n// ${todo} Auto-generated constructor stub&lt;/template>&lt;template autoinsert\="true" context\="getterbody_context" deleted\="false" description\="Code in created getters" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.getterbody" name\="getterbody">return ${field};&lt;/template>&lt;template autoinsert\="true" context\="setterbody_context" deleted\="false" description\="Code in created setters" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.setterbody" name\="setterbody">${field} \= ${param};&lt;/template>&lt;/templates>
  251. sp_cleanup.add_default_serial_version_id=true
  252. sp_cleanup.add_generated_serial_version_id=false
  253. sp_cleanup.add_missing_annotations=true
  254. sp_cleanup.add_missing_deprecated_annotations=true
  255. sp_cleanup.add_missing_methods=false
  256. sp_cleanup.add_missing_nls_tags=false
  257. sp_cleanup.add_missing_override_annotations=true
  258. sp_cleanup.add_missing_override_annotations_interface_methods=true
  259. sp_cleanup.add_serial_version_id=false
  260. sp_cleanup.always_use_blocks=true
  261. sp_cleanup.always_use_parentheses_in_expressions=false
  262. sp_cleanup.always_use_this_for_non_static_field_access=false
  263. sp_cleanup.always_use_this_for_non_static_method_access=false
  264. sp_cleanup.convert_to_enhanced_for_loop=false
  265. sp_cleanup.correct_indentation=false
  266. sp_cleanup.format_source_code=true
  267. sp_cleanup.format_source_code_changes_only=false
  268. sp_cleanup.make_local_variable_final=false
  269. sp_cleanup.make_parameters_final=false
  270. sp_cleanup.make_private_fields_final=true
  271. sp_cleanup.make_type_abstract_if_missing_method=false
  272. sp_cleanup.make_variable_declarations_final=true
  273. sp_cleanup.never_use_blocks=false
  274. sp_cleanup.never_use_parentheses_in_expressions=true
  275. sp_cleanup.on_save_use_additional_actions=true
  276. sp_cleanup.organize_imports=true
  277. sp_cleanup.qualify_static_field_accesses_with_declaring_class=false
  278. sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true
  279. sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true
  280. sp_cleanup.qualify_static_member_accesses_with_declaring_class=false
  281. sp_cleanup.qualify_static_method_accesses_with_declaring_class=false
  282. sp_cleanup.remove_private_constructors=true
  283. sp_cleanup.remove_trailing_whitespaces=false
  284. sp_cleanup.remove_trailing_whitespaces_all=true
  285. sp_cleanup.remove_trailing_whitespaces_ignore_empty=false
  286. sp_cleanup.remove_unnecessary_casts=true
  287. sp_cleanup.remove_unnecessary_nls_tags=false
  288. sp_cleanup.remove_unused_imports=false
  289. sp_cleanup.remove_unused_local_variables=false
  290. sp_cleanup.remove_unused_private_fields=true
  291. sp_cleanup.remove_unused_private_members=false
  292. sp_cleanup.remove_unused_private_methods=true
  293. sp_cleanup.remove_unused_private_types=true
  294. sp_cleanup.sort_members=false
  295. sp_cleanup.sort_members_all=false
  296. sp_cleanup.use_blocks=false
  297. sp_cleanup.use_blocks_only_for_return_and_throw=false
  298. sp_cleanup.use_parentheses_in_expressions=false
  299. sp_cleanup.use_this_for_non_static_field_access=false
  300. sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=true
  301. sp_cleanup.use_this_for_non_static_method_access=false
  302. sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=true
  303. org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore
  304. org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonNull
  305. org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault
  306. org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
  307. org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
  308. org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
  309. org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
  310. org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
  311. org.eclipse.jdt.core.compiler.compliance=1.7
  312. org.eclipse.jdt.core.compiler.debug.lineNumber=generate
  313. org.eclipse.jdt.core.compiler.debug.localVariable=generate
  314. org.eclipse.jdt.core.compiler.debug.sourceFile=generate
  315. org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
  316. org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
  317. org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
  318. org.eclipse.jdt.core.compiler.problem.comparingIdentical=error
  319. org.eclipse.jdt.core.compiler.problem.deadCode=warning
  320. org.eclipse.jdt.core.compiler.problem.deprecation=warning
  321. org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
  322. org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
  323. org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
  324. org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
  325. org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
  326. org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=ignore
  327. org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
  328. org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
  329. org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
  330. org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning
  331. org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
  332. org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
  333. org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
  334. org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled
  335. org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
  336. org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=warning
  337. org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=ignore
  338. org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
  339. org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
  340. org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore
  341. org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
  342. org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled
  343. org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore
  344. org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore
  345. org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
  346. org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
  347. org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=ignore
  348. org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
  349. org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
  350. org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore
  351. org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error
  352. org.eclipse.jdt.core.compiler.problem.nullReference=warning
  353. org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error
  354. org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning
  355. org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
  356. org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
  357. org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
  358. org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
  359. org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=ignore
  360. org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
  361. org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning
  362. org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
  363. org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=ignore
  364. org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
  365. org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore
  366. org.eclipse.jdt.core.compiler.problem.reportMethodCanBeStatic=ignore
  367. org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
  368. org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
  369. org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
  370. org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
  371. org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
  372. org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
  373. org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=enabled
  374. org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
  375. org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
  376. org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
  377. org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
  378. org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
  379. org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=ignore
  380. org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
  381. org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
  382. org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
  383. org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
  384. org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
  385. org.eclipse.jdt.core.compiler.problem.unusedImport=warning
  386. org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
  387. org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
  388. org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore
  389. org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
  390. org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
  391. org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
  392. org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
  393. org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
  394. org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
  395. org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
  396. org.eclipse.jdt.core.compiler.processAnnotations=enabled
  397. org.eclipse.jdt.core.compiler.source=1.7
  398. org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
  399. org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
  400. org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0
  401. org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
  402. org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16
  403. org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16
  404. org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16
  405. org.eclipse.jdt.core.formatter.alignment_for_assignment=0
  406. org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16
  407. org.eclipse.jdt.core.formatter.alignment_for_compact_if=16
  408. org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80
  409. org.eclipse.jdt.core.formatter.alignment_for_enum_constants=0
  410. org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16
  411. org.eclipse.jdt.core.formatter.alignment_for_method_declaration=0
  412. org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16
  413. org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16
  414. org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16
  415. org.eclipse.jdt.core.formatter.alignment_for_resources_in_try=80
  416. org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16
  417. org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16
  418. org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16
  419. org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16
  420. org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16
  421. org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16
  422. org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch=16
  423. org.eclipse.jdt.core.formatter.blank_lines_after_imports=1
  424. org.eclipse.jdt.core.formatter.blank_lines_after_package=1
  425. org.eclipse.jdt.core.formatter.blank_lines_before_field=0
  426. org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0
  427. org.eclipse.jdt.core.formatter.blank_lines_before_imports=1
  428. org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1
  429. org.eclipse.jdt.core.formatter.blank_lines_before_method=1
  430. org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1
  431. org.eclipse.jdt.core.formatter.blank_lines_before_package=0
  432. org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1
  433. org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1
  434. org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line
  435. org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line
  436. org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line
  437. org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line
  438. org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line
  439. org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line
  440. org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line
  441. org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line
  442. org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line
  443. org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line
  444. org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line
  445. org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=false
  446. org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false
  447. org.eclipse.jdt.core.formatter.comment.format_block_comments=true
  448. org.eclipse.jdt.core.formatter.comment.format_header=false
  449. org.eclipse.jdt.core.formatter.comment.format_html=true
  450. org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=true
  451. org.eclipse.jdt.core.formatter.comment.format_line_comments=true
  452. org.eclipse.jdt.core.formatter.comment.format_source_code=true
  453. org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true
  454. org.eclipse.jdt.core.formatter.comment.indent_root_tags=true
  455. org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert
  456. org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=insert
  457. org.eclipse.jdt.core.formatter.comment.line_length=80
  458. org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries=true
  459. org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries=true
  460. org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments=false
  461. org.eclipse.jdt.core.formatter.compact_else_if=true
  462. org.eclipse.jdt.core.formatter.continuation_indentation=2
  463. org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2
  464. org.eclipse.jdt.core.formatter.disabling_tag=@formatter\:off
  465. org.eclipse.jdt.core.formatter.enabling_tag=@formatter\:on
  466. org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false
  467. org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column=true
  468. org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true
  469. org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true
  470. org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true
  471. org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true
  472. org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true
  473. org.eclipse.jdt.core.formatter.indent_empty_lines=false
  474. org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true
  475. org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
  476. org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
  477. org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=true
  478. org.eclipse.jdt.core.formatter.indentation.size=4
  479. org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert
  480. org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert
  481. org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert
  482. org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert
  483. org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert
  484. org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert
  485. org.eclipse.jdt.core.formatter.insert_new_line_after_label=do not insert
  486. org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert
  487. org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert
  488. org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert
  489. org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert
  490. org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert
  491. org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert
  492. org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert
  493. org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert
  494. org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert
  495. org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert
  496. org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert
  497. org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert
  498. org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert
  499. org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert
  500. org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert
  501. org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert
  502. org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert
  503. org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert
  504. org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert
  505. org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert
  506. org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert
  507. org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert
  508. org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert
  509. org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert
  510. org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert
  511. org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert
  512. org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert
  513. org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert
  514. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert
  515. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert
  516. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert
  517. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert
  518. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert
  519. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert
  520. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert
  521. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert
  522. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert
  523. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert
  524. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert
  525. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert
  526. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert
  527. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert
  528. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert
  529. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert
  530. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert
  531. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert
  532. org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert
  533. org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert
  534. org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert
  535. org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert
  536. org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert
  537. org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert
  538. org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert
  539. org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert
  540. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert
  541. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert
  542. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert
  543. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert
  544. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert
  545. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert
  546. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert
  547. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert
  548. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert
  549. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert
  550. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert
  551. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert
  552. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try=do not insert
  553. org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert
  554. org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert
  555. org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert
  556. org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert
  557. org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert
  558. org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert
  559. org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources=insert
  560. org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert
  561. org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert
  562. org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert
  563. org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert
  564. org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert
  565. org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert
  566. org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert
  567. org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert
  568. org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=insert
  569. org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert
  570. org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert
  571. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert
  572. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert
  573. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert
  574. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert
  575. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert
  576. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert
  577. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert
  578. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert
  579. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert
  580. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert
  581. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert
  582. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert
  583. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try=do not insert
  584. org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert
  585. org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert
  586. org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert
  587. org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert
  588. org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert
  589. org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert
  590. org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert
  591. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert
  592. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert
  593. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert
  594. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert
  595. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert
  596. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert
  597. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert
  598. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert
  599. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert
  600. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert
  601. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert
  602. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert
  603. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert
  604. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert
  605. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert
  606. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert
  607. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert
  608. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert
  609. org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert
  610. org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert
  611. org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert
  612. org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert
  613. org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert
  614. org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert
  615. org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert
  616. org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert
  617. org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert
  618. org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert
  619. org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert
  620. org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert
  621. org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert
  622. org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert
  623. org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert
  624. org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert
  625. org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert
  626. org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert
  627. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert
  628. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert
  629. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert
  630. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert
  631. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert
  632. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert
  633. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert
  634. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert
  635. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert
  636. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert
  637. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert
  638. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert
  639. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try=insert
  640. org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert
  641. org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert
  642. org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert
  643. org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert
  644. org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert
  645. org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert
  646. org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert
  647. org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert
  648. org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert
  649. org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources=do not insert
  650. org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert
  651. org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert
  652. org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert
  653. org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert
  654. org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert
  655. org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert
  656. org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert
  657. org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert
  658. org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert
  659. org.eclipse.jdt.core.formatter.join_lines_in_comments=true
  660. org.eclipse.jdt.core.formatter.join_wrapped_lines=true
  661. org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false
  662. org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false
  663. org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false
  664. org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false
  665. org.eclipse.jdt.core.formatter.lineSplit=200
  666. org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false
  667. org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false
  668. org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0
  669. org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1
  670. org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true
  671. org.eclipse.jdt.core.formatter.tabulation.char=tab
  672. org.eclipse.jdt.core.formatter.tabulation.size=4
  673. org.eclipse.jdt.core.formatter.use_on_off_tags=false
  674. org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false
  675. org.eclipse.jdt.core.formatter.wrap_before_binary_operator=true
  676. org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch=true
  677. org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested=true</content>
  678.               </file>
  679.             </additionalConfig>
  680.           </configuration>
  681.         </plugin>
  682.         <plugin>
  683.           <artifactId>maven-enforcer-plugin</artifactId>
  684.           <version>1.1.1</version>
  685.           <executions>
  686.             <execution>
  687.               <id>enforce-banned-dependencies</id>
  688.               <goals>
  689.                 <goal>enforce</goal>
  690.               </goals>
  691.               <configuration>
  692.                 <rules>
  693.                   <bannedDependencies>
  694.                     <searchTransitive>true</searchTransitive>
  695.                     <excludes>
  696.                       <exclude>commons-logging</exclude>
  697.                       <exclude>org.slf4j:1.5*</exclude>
  698.                       <exclude>org.slf4j:1.6*</exclude>
  699.                       <exclude>org.springframework:2.*</exclude>
  700.                       <exclude>org.springframework:3.0.*</exclude>
  701.                     </excludes>
  702.                   </bannedDependencies>
  703.                 </rules>
  704.                 <fail>true</fail>
  705.               </configuration>
  706.             </execution>
  707.           </executions>
  708.         </plugin>
  709.       </plugins>
  710.     </pluginManagement>
  711.     <plugins>
  712.       <plugin>
  713.         <artifactId>maven-failsafe-plugin</artifactId>
  714.         <version>2.14.1</version>
  715.       </plugin>
  716.       <plugin>
  717.         <artifactId>maven-clean-plugin</artifactId>
  718.         <version>2.4.1</version>
  719.         <executions>
  720.           <execution>
  721.             <id>default-clean</id>
  722.             <phase>clean</phase>
  723.             <goals>
  724.               <goal>clean</goal>
  725.             </goals>
  726.           </execution>
  727.         </executions>
  728.       </plugin>
  729.       <plugin>
  730.         <artifactId>maven-install-plugin</artifactId>
  731.         <version>2.3.1</version>
  732.         <executions>
  733.           <execution>
  734.             <id>default-install</id>
  735.             <phase>install</phase>
  736.             <goals>
  737.               <goal>install</goal>
  738.             </goals>
  739.           </execution>
  740.         </executions>
  741.       </plugin>
  742.       <plugin>
  743.         <artifactId>maven-resources-plugin</artifactId>
  744.         <version>2.5</version>
  745.         <executions>
  746.           <execution>
  747.             <id>default-resources</id>
  748.             <phase>process-resources</phase>
  749.             <goals>
  750.               <goal>resources</goal>
  751.             </goals>
  752.           </execution>
  753.           <execution>
  754.             <id>default-testResources</id>
  755.             <phase>process-test-resources</phase>
  756.             <goals>
  757.               <goal>testResources</goal>
  758.             </goals>
  759.           </execution>
  760.         </executions>
  761.       </plugin>
  762.       <plugin>
  763.         <artifactId>maven-surefire-plugin</artifactId>
  764.         <version>2.10</version>
  765.         <executions>
  766.           <execution>
  767.             <id>default-test</id>
  768.             <phase>test</phase>
  769.             <goals>
  770.               <goal>test</goal>
  771.             </goals>
  772.           </execution>
  773.         </executions>
  774.       </plugin>
  775.       <plugin>
  776.         <artifactId>maven-compiler-plugin</artifactId>
  777.         <version>3.0</version>
  778.         <executions>
  779.           <execution>
  780.             <id>default-testCompile</id>
  781.             <phase>test-compile</phase>
  782.             <goals>
  783.               <goal>testCompile</goal>
  784.             </goals>
  785.             <configuration>
  786.               <source>1.7</source>
  787.               <target>1.7</target>
  788.             </configuration>
  789.           </execution>
  790.           <execution>
  791.             <id>default-compile</id>
  792.             <phase>compile</phase>
  793.             <goals>
  794.               <goal>compile</goal>
  795.             </goals>
  796.             <configuration>
  797.               <source>1.7</source>
  798.               <target>1.7</target>
  799.             </configuration>
  800.           </execution>
  801.         </executions>
  802.         <configuration>
  803.           <source>1.7</source>
  804.           <target>1.7</target>
  805.         </configuration>
  806.       </plugin>
  807.       <plugin>
  808.         <artifactId>maven-jar-plugin</artifactId>
  809.         <version>2.3.2</version>
  810.         <executions>
  811.           <execution>
  812.             <id>default-jar</id>
  813.             <phase>package</phase>
  814.             <goals>
  815.               <goal>jar</goal>
  816.             </goals>
  817.           </execution>
  818.         </executions>
  819.       </plugin>
  820.       <plugin>
  821.         <artifactId>maven-deploy-plugin</artifactId>
  822.         <version>2.7</version>
  823.         <executions>
  824.           <execution>
  825.             <id>default-deploy</id>
  826.             <phase>deploy</phase>
  827.             <goals>
  828.               <goal>deploy</goal>
  829.             </goals>
  830.           </execution>
  831.         </executions>
  832.       </plugin>
  833.       <plugin>
  834.         <artifactId>maven-site-plugin</artifactId>
  835.         <version>3.0</version>
  836.         <executions>
  837.           <execution>
  838.             <id>default-site</id>
  839.             <phase>site</phase>
  840.             <goals>
  841.               <goal>site</goal>
  842.             </goals>
  843.             <configuration>
  844.               <outputDirectory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\target\site</outputDirectory>
  845.               <reportPlugins>
  846.                 <reportPlugin>
  847.                   <groupId>org.apache.maven.plugins</groupId>
  848.                   <artifactId>maven-project-info-reports-plugin</artifactId>
  849.                 </reportPlugin>
  850.               </reportPlugins>
  851.             </configuration>
  852.           </execution>
  853.           <execution>
  854.             <id>default-deploy</id>
  855.             <phase>site-deploy</phase>
  856.             <goals>
  857.               <goal>deploy</goal>
  858.             </goals>
  859.             <configuration>
  860.               <outputDirectory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\target\site</outputDirectory>
  861.               <reportPlugins>
  862.                 <reportPlugin>
  863.                   <groupId>org.apache.maven.plugins</groupId>
  864.                   <artifactId>maven-project-info-reports-plugin</artifactId>
  865.                 </reportPlugin>
  866.               </reportPlugins>
  867.             </configuration>
  868.           </execution>
  869.         </executions>
  870.         <configuration>
  871.           <outputDirectory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\target\site</outputDirectory>
  872.           <reportPlugins>
  873.             <reportPlugin>
  874.               <groupId>org.apache.maven.plugins</groupId>
  875.               <artifactId>maven-project-info-reports-plugin</artifactId>
  876.             </reportPlugin>
  877.           </reportPlugins>
  878.         </configuration>
  879.       </plugin>
  880.     </plugins>
  881.   </build>
  882.   <reporting>
  883.     <outputDirectory>C:\Users\jmartin\workspace\ppptr-parent\ppptr-services\ppptr-services-impl\target\site</outputDirectory>
  884.   </reporting>
  885. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement