alizalang 8 yıl önce
ebeveyn
işleme
73bf36b596
1 değiştirilmiş dosya ile 4 ekleme ve 21 silme
  1. 4
    21
      pom.xml

+ 4
- 21
pom.xml Dosyayı Görüntüle

@@ -7,26 +7,9 @@
7 7
     <groupId>com.zipcoder</groupId>
8 8
     <artifactId>payment</artifactId>
9 9
     <version>1.0-SNAPSHOT</version>
10
-    <build>
11
-        <plugins>
12
-            <plugin>
13
-                <groupId>org.apache.maven.plugins</groupId>
14
-                <artifactId>maven-compiler-plugin</artifactId>
15
-                <configuration>
16
-                    <source>8</source>
17
-                    <target>8</target>
18
-                </configuration>
19
-            </plugin>
20
-        </plugins>
21
-    </build>
22
-    <dependencies>
23
-        <dependency>
24
-            <groupId>junit</groupId>
25
-            <artifactId>junit</artifactId>
26
-            <version>RELEASE</version>
27
-            <scope>test</scope>
28
-        </dependency>
29
-    </dependencies>
30
-
10
+    <properties>
11
+        <maven.compiler.source>1.8</maven.compiler.source>
12
+        <maven.compiler.target>1.8</maven.compiler.target>
13
+    </properties>
31 14
 
32 15
 </project>