Skip to content

Commit 1353eed

Browse files
author
eugenp
committed
Eclipse cleanup work
1 parent a4d5bb4 commit 1353eed

File tree

5 files changed

+35
-22
lines changed

5 files changed

+35
-22
lines changed

spring-security-rest-full/.classpath

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" output="target/classes" path="src/main/java">
3+
<classpathentry kind="src" path="src/main/java">
44
<attributes>
55
<attribute name="optional" value="true"/>
66
<attribute name="maven.pomderived" value="true"/>
77
</attributes>
88
</classpathentry>
9-
<classpathentry kind="src" path="target/generated-sources/java"/>
10-
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
9+
<classpathentry kind="src" path="target/generated-sources/java">
10+
<attributes>
11+
<attribute name="optional" value="true"/>
12+
<attribute name="maven.pomderived" value="true"/>
13+
</attributes>
14+
</classpathentry>
15+
<classpathentry excluding="**" kind="src" path="src/main/resources">
1116
<attributes>
1217
<attribute name="maven.pomderived" value="true"/>
1318
</attributes>
1419
</classpathentry>
15-
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
20+
<classpathentry excluding="**" kind="src" path="src/test/resources">
1621
<attributes>
1722
<attribute name="maven.pomderived" value="true"/>
1823
</attributes>
@@ -23,7 +28,7 @@
2328
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
2429
</attributes>
2530
</classpathentry>
26-
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
31+
<classpathentry kind="src" path="src/test/java">
2732
<attributes>
2833
<attribute name="optional" value="true"/>
2934
<attribute name="maven.pomderived" value="true"/>

spring-security-rest-full/.project

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,13 @@
2626
</arguments>
2727
</buildCommand>
2828
<buildCommand>
29-
<name>org.hibernate.eclipse.console.hibernateBuilder</name>
29+
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
30+
<triggers>full,incremental,</triggers>
3031
<arguments>
32+
<dictionary>
33+
<key>LaunchConfigHandle</key>
34+
<value>&lt;project&gt;/.externalToolBuilders/org.hibernate.eclipse.console.hibernateBuilder.launch</value>
35+
</dictionary>
3136
</arguments>
3237
</buildCommand>
3338
<buildCommand>

spring-security-rest-full/.settings/org.eclipse.jdt.core.prefs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annota
55
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
66
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
77
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
8+
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
89
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
910
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
1011
org.eclipse.jdt.core.compiler.compliance=1.7

spring-security-rest-full/.settings/org.eclipse.wst.common.component

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
66
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
77
<wb-resource deploy-path="/WEB-INF/classes" source-path="/target/generated-sources/java"/>
8+
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/test/resources"/>
9+
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/test/java"/>
810
<property name="context-root" value="spring-security-rest-full"/>
911
<property name="java-output-path" value="/spring-security-rest-full/target/classes"/>
1012
</wb-module>

spring-security-rest-full/pom.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -329,22 +329,22 @@
329329

330330
<!-- Querydsl -->
331331

332-
<plugin>
333-
<groupId>com.mysema.maven</groupId>
334-
<artifactId>apt-maven-plugin</artifactId>
335-
<version>1.1.3</version>
336-
<executions>
337-
<execution>
338-
<goals>
339-
<goal>process</goal>
340-
</goals>
341-
<configuration>
342-
<outputDirectory>target/generated-sources/java</outputDirectory>
343-
<processor>com.mysema.query.apt.jpa.JPAAnnotationProcessor</processor>
344-
</configuration>
345-
</execution>
346-
</executions>
347-
</plugin>
332+
<!-- <plugin> -->
333+
<!-- <groupId>com.mysema.maven</groupId> -->
334+
<!-- <artifactId>apt-maven-plugin</artifactId> -->
335+
<!-- <version>1.1.3</version> -->
336+
<!-- <executions> -->
337+
<!-- <execution> -->
338+
<!-- <goals> -->
339+
<!-- <goal>process</goal> -->
340+
<!-- </goals> -->
341+
<!-- <configuration> -->
342+
<!-- <outputDirectory>target/generated-sources/java</outputDirectory> -->
343+
<!-- <processor>com.mysema.query.apt.jpa.JPAAnnotationProcessor</processor> -->
344+
<!-- </configuration> -->
345+
<!-- </execution> -->
346+
<!-- </executions> -->
347+
<!-- </plugin> -->
348348

349349
</plugins>
350350

0 commit comments

Comments
 (0)