Skip to content

Commit ea889dd

Browse files
author
eugenp
committed
cleanup work
1 parent 4f9a31b commit ea889dd

5 files changed

Lines changed: 15 additions & 61 deletions

File tree

common-client/pom.xml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -273,21 +273,6 @@
273273
</configuration>
274274
</plugin>
275275

276-
<plugin>
277-
<groupId>org.zeroturnaround</groupId>
278-
<artifactId>jrebel-maven-plugin</artifactId>
279-
<version>${jrebel-maven-plugin.version}</version>
280-
<executions>
281-
<execution>
282-
<id>generate-rebel-xml</id>
283-
<phase>process-resources</phase>
284-
<goals>
285-
<goal>generate</goal>
286-
</goals>
287-
</execution>
288-
</executions>
289-
</plugin>
290-
291276
</plugins>
292277

293278
</build>

common/.settings/org.eclipse.jdt.core.prefs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore
3+
org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonNull
4+
org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault
5+
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
6+
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
27
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
38
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
49
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
@@ -11,12 +16,13 @@ org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
1116
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
1217
org.eclipse.jdt.core.compiler.problem.comparingIdentical=error
1318
org.eclipse.jdt.core.compiler.problem.deadCode=error
14-
org.eclipse.jdt.core.compiler.problem.deprecation=error
19+
org.eclipse.jdt.core.compiler.problem.deprecation=warning
1520
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=enabled
1621
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=enabled
1722
org.eclipse.jdt.core.compiler.problem.discouragedReference=error
1823
org.eclipse.jdt.core.compiler.problem.emptyStatement=error
1924
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
25+
org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=ignore
2026
org.eclipse.jdt.core.compiler.problem.fallthroughCase=error
2127
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
2228
org.eclipse.jdt.core.compiler.problem.fieldHiding=error
@@ -30,7 +36,9 @@ org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=error
3036
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=error
3137
org.eclipse.jdt.core.compiler.problem.localVariableHiding=warning
3238
org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=error
39+
org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore
3340
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=error
41+
org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled
3442
org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=error
3543
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=error
3644
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
@@ -39,12 +47,17 @@ org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=error
3947
org.eclipse.jdt.core.compiler.problem.noEffectAssignment=error
4048
org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=error
4149
org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore
50+
org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error
4251
org.eclipse.jdt.core.compiler.problem.nullReference=error
52+
org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error
53+
org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning
4354
org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=error
4455
org.eclipse.jdt.core.compiler.problem.parameterAssignment=error
4556
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=error
4657
org.eclipse.jdt.core.compiler.problem.potentialNullReference=warning
58+
org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=ignore
4759
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
60+
org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning
4861
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=error
4962
org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=ignore
5063
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=error
@@ -58,6 +71,7 @@ org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=warning
5871
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=error
5972
org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=enabled
6073
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
74+
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
6175
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
6276
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=error
6377
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=error

common/pom.xml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -358,21 +358,6 @@
358358
</configuration>
359359
</plugin>
360360

361-
<plugin>
362-
<groupId>org.zeroturnaround</groupId>
363-
<artifactId>jrebel-maven-plugin</artifactId>
364-
<version>${jrebel-maven-plugin.version}</version>
365-
<executions>
366-
<execution>
367-
<id>generate-rebel-xml</id>
368-
<phase>process-resources</phase>
369-
<goals>
370-
<goal>generate</goal>
371-
</goals>
372-
</execution>
373-
</executions>
374-
</plugin>
375-
376361
</plugins>
377362

378363
</build>

sec/pom.xml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -132,21 +132,6 @@
132132
</configuration>
133133
</plugin>
134134

135-
<plugin>
136-
<groupId>org.zeroturnaround</groupId>
137-
<artifactId>jrebel-maven-plugin</artifactId>
138-
<version>${jrebel-maven-plugin.version}</version>
139-
<executions>
140-
<execution>
141-
<id>generate-rebel-xml</id>
142-
<phase>process-resources</phase>
143-
<goals>
144-
<goal>generate</goal>
145-
</goals>
146-
</execution>
147-
</executions>
148-
</plugin>
149-
150135
<plugin>
151136
<groupId>org.codehaus.cargo</groupId>
152137
<artifactId>cargo-maven2-plugin</artifactId>

test/pom.xml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -98,21 +98,6 @@
9898
</configuration>
9999
</plugin>
100100

101-
<plugin>
102-
<groupId>org.zeroturnaround</groupId>
103-
<artifactId>jrebel-maven-plugin</artifactId>
104-
<version>${jrebel-maven-plugin.version}</version>
105-
<executions>
106-
<execution>
107-
<id>generate-rebel-xml</id>
108-
<phase>process-resources</phase>
109-
<goals>
110-
<goal>generate</goal>
111-
</goals>
112-
</execution>
113-
</executions>
114-
</plugin>
115-
116101
</plugins>
117102

118103
</build>

0 commit comments

Comments
 (0)