File tree Expand file tree Collapse file tree
spring-security-basic-auth
spring-security-mvc-custom
spring-security-mvc-digest-auth
spring-security-mvc-login
spring-security-mvc-session
spring-security-rest-custom Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 <classpathentry kind =" con" path =" org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER" >
3131 <attributes >
3232 <attribute name =" maven.pomderived" value =" true" />
33+ <attribute name =" org.eclipse.jst.component.dependency" value =" /WEB-INF/lib" />
3334 </attributes >
3435 </classpathentry >
3536 <classpathentry kind =" output" path =" target/classes" />
Original file line number Diff line number Diff line change 11DELEGATES_PREFERENCE =delegateValidatorList
22USER_BUILD_PREFERENCE =enabledBuildValidatorListorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidator;
33USER_MANUAL_PREFERENCE =enabledManualValidatorListorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidator;
4- USER_PREFERENCE =overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.303.v201202090300
4+ USER_PREFERENCE =overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.402.v201212031633
5+ disabled =06target
56eclipse.preferences.version =1
67override =true
78suspend =false
Original file line number Diff line number Diff line change 138138
139139 <plugins >
140140
141+ <plugin >
142+ <groupId >org.apache.maven.plugins</groupId >
143+ <artifactId >maven-compiler-plugin</artifactId >
144+ <version >${maven-compiler-plugin.version} </version >
145+ <configuration >
146+ <source >1.7</source >
147+ <target >1.7</target >
148+ </configuration >
149+ </plugin >
150+
151+ <plugin >
152+ <groupId >org.apache.maven.plugins</groupId >
153+ <artifactId >maven-war-plugin</artifactId >
154+ <version >${maven-war-plugin.version} </version >
155+ </plugin >
156+
141157 <plugin >
142158 <groupId >org.apache.maven.plugins</groupId >
143159 <artifactId >maven-surefire-plugin</artifactId >
Original file line number Diff line number Diff line change 2727 <attribute name =" org.eclipse.jst.component.dependency" value =" /WEB-INF/lib" />
2828 </attributes >
2929 </classpathentry >
30+ <classpathentry kind =" src" output =" target/test-classes" path =" src/test/java" >
31+ <attributes >
32+ <attribute name =" optional" value =" true" />
33+ <attribute name =" maven.pomderived" value =" true" />
34+ </attributes >
35+ </classpathentry >
3036 <classpathentry kind =" output" path =" target/classes" />
3137</classpath >
Original file line number Diff line number Diff line change 11DELEGATES_PREFERENCE =delegateValidatorList
22USER_BUILD_PREFERENCE =enabledBuildValidatorListorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidator;
33USER_MANUAL_PREFERENCE =enabledManualValidatorListorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidator;
4- USER_PREFERENCE =overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.303.v201202090300
4+ USER_PREFERENCE =overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.402.v201212031633
5+ disabled =06target
56eclipse.preferences.version =1
67override =true
78suspend =false
Original file line number Diff line number Diff line change 143143
144144 <plugins >
145145
146+ <plugin >
147+ <groupId >org.apache.maven.plugins</groupId >
148+ <artifactId >maven-compiler-plugin</artifactId >
149+ <version >${maven-compiler-plugin.version} </version >
150+ <configuration >
151+ <source >1.7</source >
152+ <target >1.7</target >
153+ </configuration >
154+ </plugin >
155+
156+ <plugin >
157+ <groupId >org.apache.maven.plugins</groupId >
158+ <artifactId >maven-war-plugin</artifactId >
159+ <version >${maven-war-plugin.version} </version >
160+ </plugin >
161+
146162 <plugin >
147163 <groupId >org.apache.maven.plugins</groupId >
148164 <artifactId >maven-surefire-plugin</artifactId >
Original file line number Diff line number Diff line change 1616 <attribute name =" maven.pomderived" value =" true" />
1717 </attributes >
1818 </classpathentry >
19- <classpathentry kind =" con" path =" org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7 " >
19+ <classpathentry kind =" con" path =" org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER " >
2020 <attributes >
2121 <attribute name =" maven.pomderived" value =" true" />
22+ <attribute name =" org.eclipse.jst.component.dependency" value =" /WEB-INF/lib" />
2223 </attributes >
2324 </classpathentry >
24- <classpathentry kind =" con" path =" org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER" >
25+ <classpathentry kind =" src" output =" target/test-classes" path =" src/test/java" >
26+ <attributes >
27+ <attribute name =" optional" value =" true" />
28+ <attribute name =" maven.pomderived" value =" true" />
29+ </attributes >
30+ </classpathentry >
31+ <classpathentry kind =" con" path =" org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7" >
2532 <attributes >
2633 <attribute name =" maven.pomderived" value =" true" />
27- <attribute name =" org.eclipse.jst.component.dependency" value =" /WEB-INF/lib" />
2834 </attributes >
2935 </classpathentry >
3036 <classpathentry kind =" output" path =" target/classes" />
Original file line number Diff line number Diff line change @@ -6,11 +6,7 @@ org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nul
66org.eclipse.jdt.core.compiler.annotation.nullanalysis =disabled
77org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode =enabled
88org.eclipse.jdt.core.compiler.codegen.targetPlatform =1.7
9- org.eclipse.jdt.core.compiler.codegen.unusedLocal =preserve
109org.eclipse.jdt.core.compiler.compliance =1.7
11- org.eclipse.jdt.core.compiler.debug.lineNumber =generate
12- org.eclipse.jdt.core.compiler.debug.localVariable =generate
13- org.eclipse.jdt.core.compiler.debug.sourceFile =generate
1410org.eclipse.jdt.core.compiler.problem.annotationSuperInterface =warning
1511org.eclipse.jdt.core.compiler.problem.assertIdentifier =error
1612org.eclipse.jdt.core.compiler.problem.autoboxing =ignore
Original file line number Diff line number Diff line change 11DELEGATES_PREFERENCE =delegateValidatorList
22USER_BUILD_PREFERENCE =enabledBuildValidatorListorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidator;
33USER_MANUAL_PREFERENCE =enabledManualValidatorListorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidator;
4- USER_PREFERENCE =overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.303.v201202090300
4+ USER_PREFERENCE =overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.402.v201212031633
5+ disabled =06target
56eclipse.preferences.version =1
67override =true
78suspend =false
Original file line number Diff line number Diff line change 9393 <dependency >
9494 <groupId >com.google.guava</groupId >
9595 <artifactId >guava</artifactId >
96- <version >14.0.1 </version >
96+ <version >${guava.version} </version >
9797 </dependency >
9898
9999 <!-- test scoped -->
137137 </resources >
138138
139139 <plugins >
140-
140+
141+ <plugin >
142+ <groupId >org.apache.maven.plugins</groupId >
143+ <artifactId >maven-compiler-plugin</artifactId >
144+ <version >${maven-compiler-plugin.version} </version >
145+ <configuration >
146+ <source >1.7</source >
147+ <target >1.7</target >
148+ </configuration >
149+ </plugin >
150+
151+ <plugin >
152+ <groupId >org.apache.maven.plugins</groupId >
153+ <artifactId >maven-war-plugin</artifactId >
154+ <version >${maven-war-plugin.version} </version >
155+ </plugin >
156+
141157 <plugin >
142158 <groupId >org.apache.maven.plugins</groupId >
143159 <artifactId >maven-surefire-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments