Quellcode durchsuchen

style24 하위 폴더 ignore 처리

JUSEUNG vor 5 Jahren
Ursprung
Commit
b5bdf4b6e3
3 geänderte Dateien mit 18 neuen und 19 gelöschten Zeilen
  1. 3 0
      .gitignore
  2. 15 13
      pom.xml
  3. 0 6
      style24.admin/WEB-INF/web.xml

+ 3 - 0
.gitignore

@@ -14,3 +14,6 @@ target/
 ### MacOS ###
 .DS_Store
 META-INF/context.xml
+
+### git 분리를 위한 ignore 설정###
+/style24.*

+ 15 - 13
pom.xml

@@ -149,18 +149,20 @@
 	</dependencies>
 
 	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.springframework.boot</groupId>
-				<artifactId>spring-boot-maven-plugin</artifactId>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-surefire-plugin</artifactId>
-				<configuration>
-					<skipTests>${skipTests}</skipTests>
-				</configuration>
-			</plugin>
-		</plugins>
+		<pluginManagement>
+			<plugins>
+				<plugin>
+					<groupId>org.springframework.boot</groupId>
+					<artifactId>spring-boot-maven-plugin</artifactId>
+				</plugin>
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-surefire-plugin</artifactId>
+					<configuration>
+						<skipTests>${skipTests}</skipTests>
+					</configuration>
+				</plugin>
+			</plugins>
+		</pluginManagement>
 	</build>
 </project>

+ 0 - 6
style24.admin/WEB-INF/web.xml

@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
-         version="4.0">
-</web-app>