Maven 제거 및 Gradle 전용화
@9a3c64741f90f60eafcecf6be3a97bbb03c8605d
--- .gitignore
+++ .gitignore
... | ... | @@ -96,18 +96,6 @@ |
| 96 | 96 |
Temporary Items |
| 97 | 97 |
.apdisk |
| 98 | 98 |
|
| 99 |
-### Maven ### |
|
| 100 |
-pom.xml.tag |
|
| 101 |
-pom.xml.releaseBackup |
|
| 102 |
-pom.xml.versionsBackup |
|
| 103 |
-pom.xml.next |
|
| 104 |
-release.properties |
|
| 105 |
-dependency-reduced-pom.xml |
|
| 106 |
-buildNumber.properties |
|
| 107 |
-.mvn/timing.properties |
|
| 108 |
-# https://github.com/takari/maven-wrapper#usage-without-binary-jar |
|
| 109 |
-.mvn/wrapper/maven-wrapper.jar |
|
| 110 |
- |
|
| 111 | 99 |
### Windows ### |
| 112 | 100 |
# Windows thumbnail cache files |
| 113 | 101 |
Thumbs.db |
--- CHANGELOG_BOOT_JPA.md
+++ CHANGELOG_BOOT_JPA.md
... | ... | @@ -402,3 +402,10 @@ |
| 402 | 402 |
- 배너 등록/수정 시 `@Valid` 적용 및 오류 처리 |
| 403 | 403 |
- `/Users/beom/Documents/intellij/cms/FoxeduBaseCMS/base/src/main/java/egovframework/com/mng/uss/ion/pwm/web/PopupManageController.java` |
| 404 | 404 |
- 팝업 등록/수정 시 `@Valid` 적용 및 오류 처리 |
| 405 |
+ |
|
| 406 |
+## 추가 변경(20차) |
|
| 407 |
+ |
|
| 408 |
+### Maven 흔적 제거 |
|
| 409 |
+- `/Users/beom/Documents/intellij/cms/FoxeduBaseCMS/base/pom.xml` 삭제 |
|
| 410 |
+- `/Users/beom/Documents/intellij/cms/FoxeduBaseCMS/.gitignore` |
|
| 411 |
+ - Maven 관련 ignore 항목 제거 |
--- base/pom.xml
... | ... | @@ -1,856 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| 3 | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
| 4 | - <modelVersion>4.0.0</modelVersion> | |
| 5 | - <groupId>base</groupId> | |
| 6 | - <artifactId>base</artifactId> | |
| 7 | - <packaging>war</packaging> | |
| 8 | - <version>1.0</version> | |
| 9 | - <name>base</name> | |
| 10 | - <url>http://maven.apache.org</url> | |
| 11 | - | |
| 12 | - <properties> | |
| 13 | - <spring.maven.artifact.version>4.3.22.RELEASE</spring.maven.artifact.version> | |
| 14 | - <egovframework.rte.version>3.9.0</egovframework.rte.version> | |
| 15 | - <spring-boot.version>3.2.5</spring-boot.version> | |
| 16 | - <java.version>21</java.version> | |
| 17 | - </properties> | |
| 18 | - | |
| 19 | - <repositories> | |
| 20 | - <repository> | |
| 21 | - <id>mvn2</id> | |
| 22 | - <url>http://repo1.maven.org/maven2/</url> | |
| 23 | - <releases> | |
| 24 | - <enabled>true</enabled> | |
| 25 | - </releases> | |
| 26 | - <snapshots> | |
| 27 | - <enabled>true</enabled> | |
| 28 | - </snapshots> | |
| 29 | - </repository> | |
| 30 | - <repository> | |
| 31 | - <id>egovframe</id> | |
| 32 | - <url>http://maven.egovframe.kr:8080/maven/</url> | |
| 33 | - <releases> | |
| 34 | - <enabled>true</enabled> | |
| 35 | - </releases> | |
| 36 | - <snapshots> | |
| 37 | - <enabled>false</enabled> | |
| 38 | - </snapshots> | |
| 39 | - </repository> | |
| 40 | - </repositories> | |
| 41 | - | |
| 42 | - <dependencyManagement> | |
| 43 | - <dependencies> | |
| 44 | - <dependency> | |
| 45 | - <groupId>org.springframework.boot</groupId> | |
| 46 | - <artifactId>spring-boot-dependencies</artifactId> | |
| 47 | - <version>${spring-boot.version}</version> | |
| 48 | - <type>pom</type> | |
| 49 | - <scope>import</scope> | |
| 50 | - </dependency> | |
| 51 | - </dependencies> | |
| 52 | - </dependencyManagement> | |
| 53 | - | |
| 54 | - <dependencies> | |
| 55 | - <dependency> | |
| 56 | - <groupId>org.springframework.boot</groupId> | |
| 57 | - <artifactId>spring-boot-starter-web</artifactId> | |
| 58 | - </dependency> | |
| 59 | - <dependency> | |
| 60 | - <groupId>org.springframework.boot</groupId> | |
| 61 | - <artifactId>spring-boot-starter-data-jpa</artifactId> | |
| 62 | - </dependency> | |
| 63 | - <dependency> | |
| 64 | - <groupId>org.springframework.boot</groupId> | |
| 65 | - <artifactId>spring-boot-starter-thymeleaf</artifactId> | |
| 66 | - </dependency> | |
| 67 | - <dependency> | |
| 68 | - <groupId>org.springframework.boot</groupId> | |
| 69 | - <artifactId>spring-boot-starter-tomcat</artifactId> | |
| 70 | - <scope>provided</scope> | |
| 71 | - </dependency> | |
| 72 | - <dependency> | |
| 73 | - <groupId>org.projectlombok</groupId> | |
| 74 | - <artifactId>lombok</artifactId> | |
| 75 | - <version>1.18.30</version> | |
| 76 | - <scope>provided</scope> | |
| 77 | - </dependency> | |
| 78 | - <dependency> | |
| 79 | - <groupId>org.springdoc</groupId> | |
| 80 | - <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> | |
| 81 | - <version>2.5.0</version> | |
| 82 | - </dependency> | |
| 83 | - <dependency> | |
| 84 | - <groupId>net.bramp.ffmpeg</groupId> | |
| 85 | - <artifactId>ffmpeg</artifactId> | |
| 86 | - <version>0.6.2</version> | |
| 87 | - </dependency> | |
| 88 | - | |
| 89 | - <dependency> | |
| 90 | - <groupId>net.coobird</groupId> | |
| 91 | - <artifactId>thumbnailator</artifactId> | |
| 92 | - <version>0.4.2</version> | |
| 93 | - </dependency> | |
| 94 | - | |
| 95 | - <dependency> | |
| 96 | - <groupId>net.sf.json-lib</groupId> | |
| 97 | - <artifactId>json-lib</artifactId> | |
| 98 | - <version>2.4</version> | |
| 99 | - <classifier>jdk15</classifier> | |
| 100 | - </dependency> | |
| 101 | - | |
| 102 | - <dependency> | |
| 103 | - <groupId>com.drewnoakes</groupId> | |
| 104 | - <artifactId>metadata-extractor</artifactId> | |
| 105 | - <version>2.6.2</version> | |
| 106 | - </dependency> | |
| 107 | - | |
| 108 | - <dependency> | |
| 109 | - <groupId>com.googlecode.json-simple</groupId> | |
| 110 | - <artifactId>json-simple</artifactId> | |
| 111 | - <version>1.1</version> | |
| 112 | - </dependency> | |
| 113 | - | |
| 114 | - <dependency> | |
| 115 | - <groupId>net.sf.javamusictag</groupId> | |
| 116 | - <artifactId>jid3lib</artifactId> | |
| 117 | - <version>0.5.4</version> | |
| 118 | - </dependency> | |
| 119 | - | |
| 120 | - | |
| 121 | - <!-- 실행환경 라이브러리 --> | |
| 122 | - <!-- | |
| 123 | - mybatis를 사용하는 데 jdk1.5로 컴파일 할 경우 아래와 같이 변경해 주시기 바랍니다. | |
| 124 | - (3.2.X 버전에서 부터 jdk1.6으로 컴파일 되어 발생하는 현상) | |
| 125 | - <dependency> | |
| 126 | - <groupId>egovframework.rte</groupId> | |
| 127 | - <artifactId>egovframework.rte.psl.dataaccess</artifactId> | |
| 128 | - <version>${egovframework.rte.version}</version>
| |
| 129 | - <exclusions> | |
| 130 | - <exclusion> | |
| 131 | - <artifactId>mybatis</artifactId> | |
| 132 | - <groupId>org.mybatis</groupId> | |
| 133 | - </exclusion> | |
| 134 | - </exclusions> | |
| 135 | - </dependency> | |
| 136 | - <dependency> | |
| 137 | - <groupId>org.mybatis</groupId> | |
| 138 | - <artifactId>mybatis</artifactId> | |
| 139 | - <version>3.1.1</version> | |
| 140 | - </dependency> | |
| 141 | - --> | |
| 142 | - <dependency> | |
| 143 | - <groupId>egovframework.rte</groupId> | |
| 144 | - <artifactId>egovframework.rte.fdl.idgnr</artifactId> | |
| 145 | - <version>${egovframework.rte.version}</version>
| |
| 146 | - </dependency> | |
| 147 | - | |
| 148 | - <!-- | |
| 149 | - JBoss의 경우는 <body-context>부분을 empty로 수정하여 적용하시면 되며, | |
| 150 | - pom.xml을 아래와 같이 적용하시면 수정된 jar를 참조하실 수 있습니다. | |
| 151 | - (기존 egovframework.rte.ptl.mvc dependency에 내부적으로 참조되고 있어, | |
| 152 | - 해당 부분을 exclude 처리해야 함) | |
| 153 | - 아래 주석을 해제하시면 됩니다. | |
| 154 | - --> | |
| 155 | - <dependency> | |
| 156 | - <groupId>egovframework.rte</groupId> | |
| 157 | - <artifactId>egovframework.rte.ptl.mvc</artifactId> | |
| 158 | - <version>${egovframework.rte.version}</version>
| |
| 159 | - <!-- <exclusions> | |
| 160 | - <exclusion> | |
| 161 | - <groupId>org.springmodules</groupId> | |
| 162 | - <artifactId>spring-modules-validation</artifactId> | |
| 163 | - </exclusion> | |
| 164 | - <exclusions> --> | |
| 165 | - </dependency> | |
| 166 | - <!-- <dependency> | |
| 167 | - <groupId>egovframework.rte</groupId> | |
| 168 | - <artifactId>spring-modules-validation</artifactId> | |
| 169 | - <version>0.9</version> | |
| 170 | - </dependency> --> | |
| 171 | - <dependency> | |
| 172 | - <groupId>egovframework.rte</groupId> | |
| 173 | - <artifactId>egovframework.rte.fdl.property</artifactId> | |
| 174 | - <version>${egovframework.rte.version}</version>
| |
| 175 | - </dependency> | |
| 176 | - <dependency> | |
| 177 | - <groupId>egovframework.rte</groupId> | |
| 178 | - <artifactId>egovframework.rte.fdl.security</artifactId> | |
| 179 | - <version>${egovframework.rte.version}</version>
| |
| 180 | - </dependency> | |
| 181 | - <dependency> | |
| 182 | - <groupId>egovframework.rte</groupId> | |
| 183 | - <artifactId>egovframework.rte.fdl.excel</artifactId> | |
| 184 | - <version>${egovframework.rte.version}</version>
| |
| 185 | - </dependency> | |
| 186 | - <dependency> | |
| 187 | - <groupId>egovframework.rte</groupId> | |
| 188 | - <artifactId>egovframework.rte.bat.core</artifactId> | |
| 189 | - <version>${egovframework.rte.version}</version>
| |
| 190 | - </dependency> | |
| 191 | - <dependency> | |
| 192 | - <groupId>egovframework.rte</groupId> | |
| 193 | - <artifactId>egovframework.rte.fdl.crypto</artifactId> | |
| 194 | - <version>${egovframework.rte.version}</version>
| |
| 195 | - </dependency> | |
| 196 | - <!-- 실행환경 라이브러리 끝 --> | |
| 197 | - | |
| 198 | - <dependency> | |
| 199 | - <groupId>com.googlecode.log4jdbc</groupId> | |
| 200 | - <artifactId>log4jdbc</artifactId> | |
| 201 | - <version>1.2</version> | |
| 202 | - <exclusions> | |
| 203 | - <exclusion> | |
| 204 | - <artifactId>slf4j-api</artifactId> | |
| 205 | - <groupId>org.slf4j</groupId> | |
| 206 | - </exclusion> | |
| 207 | - </exclusions> | |
| 208 | - </dependency> | |
| 209 | - | |
| 210 | - <dependency> | |
| 211 | - <groupId>commons-dbcp</groupId> | |
| 212 | - <artifactId>commons-dbcp</artifactId> | |
| 213 | - <version>1.4</version> | |
| 214 | - </dependency> | |
| 215 | - | |
| 216 | - <dependency> | |
| 217 | - <groupId>org.glassfish.web</groupId> | |
| 218 | - <artifactId>jakarta.servlet.jsp.jstl</artifactId> | |
| 219 | - <version>3.0.1</version> | |
| 220 | - </dependency> | |
| 221 | - <!-- | |
| 222 | - <dependency> | |
| 223 | - <groupId>javax.servlet</groupId> | |
| 224 | - <artifactId>servlet-api</artifactId> | |
| 225 | - <version>2.5</version> | |
| 226 | - <scope>provided</scope> | |
| 227 | - </dependency> | |
| 228 | - --> | |
| 229 | - <!-- Jakarta Servlet API는 Spring Boot 3에서 기본 제공 --> | |
| 230 | - | |
| 231 | - <dependency> | |
| 232 | - <groupId>org.jasypt</groupId> | |
| 233 | - <artifactId>jasypt</artifactId> | |
| 234 | - <version>1.9.2</version> | |
| 235 | - </dependency> | |
| 236 | - | |
| 237 | - <dependency> | |
| 238 | - <groupId>cglib</groupId> | |
| 239 | - <artifactId>cglib</artifactId> | |
| 240 | - <version>3.1</version> | |
| 241 | - </dependency> | |
| 242 | - <dependency> | |
| 243 | - <groupId>org.apache.commons</groupId> | |
| 244 | - <artifactId>commons-compress</artifactId> | |
| 245 | - <version>1.8.1</version> | |
| 246 | - </dependency> | |
| 247 | - <dependency> | |
| 248 | - <groupId>xerces</groupId> | |
| 249 | - <artifactId>xercesImpl</artifactId> | |
| 250 | - <version>2.11.0</version> | |
| 251 | - </dependency> | |
| 252 | - | |
| 253 | - <!-- cache --> | |
| 254 | - <dependency> | |
| 255 | - <groupId>net.sf.ehcache</groupId> | |
| 256 | - <artifactId>ehcache-core</artifactId> | |
| 257 | - <version>2.6.9</version> | |
| 258 | - <exclusions> | |
| 259 | - <exclusion> | |
| 260 | - <artifactId>slf4j-api</artifactId> | |
| 261 | - <groupId>org.slf4j</groupId> | |
| 262 | - </exclusion> | |
| 263 | - </exclusions> | |
| 264 | - </dependency> | |
| 265 | - <dependency> | |
| 266 | - <groupId>net.sf.ehcache</groupId> | |
| 267 | - <artifactId>ehcache-terracotta</artifactId> | |
| 268 | - <version>2.1.1</version> | |
| 269 | - </dependency> | |
| 270 | - <!-- cache end --> | |
| 271 | - | |
| 272 | - <!-- Scheduling --> | |
| 273 | - <dependency> | |
| 274 | - <groupId>org.quartz-scheduler</groupId> | |
| 275 | - <artifactId>quartz</artifactId> | |
| 276 | - <version>2.1.7</version> | |
| 277 | - <exclusions> | |
| 278 | - <exclusion> | |
| 279 | - <artifactId>slf4j-api</artifactId> | |
| 280 | - <groupId>org.slf4j</groupId> | |
| 281 | - </exclusion> | |
| 282 | - </exclusions> | |
| 283 | - </dependency> | |
| 284 | - <dependency> | |
| 285 | - <groupId>org.quartz-scheduler</groupId> | |
| 286 | - <artifactId>quartz-jobs</artifactId> | |
| 287 | - <version>2.2.1</version> | |
| 288 | - </dependency> | |
| 289 | - <!-- Scheduling end--> | |
| 290 | - | |
| 291 | - <!-- 공통컴포넌트 시작 --> | |
| 292 | - | |
| 293 | - <!-- 게시판 생성시 사용 TokenStream --> | |
| 294 | - <dependency> | |
| 295 | - <groupId>org.antlr</groupId> | |
| 296 | - <artifactId>antlr</artifactId> | |
| 297 | - <version>3.5</version> | |
| 298 | - </dependency> | |
| 299 | - | |
| 300 | - <!-- 우편번호를 위한 라이브러리 --> | |
| 301 | - <!-- <dependency> | |
| 302 | - <groupId>oro</groupId> | |
| 303 | - <artifactId>oro</artifactId> | |
| 304 | - <version>2.0.8</version> | |
| 305 | - </dependency> --> | |
| 306 | - | |
| 307 | - <!-- 요소기술 달력을 위한 라이브러리 --> | |
| 308 | - <dependency> | |
| 309 | - <groupId>com.ibm.icu</groupId> | |
| 310 | - <artifactId>icu4j</artifactId> | |
| 311 | - <version>53.1</version> | |
| 312 | - </dependency> | |
| 313 | - | |
| 314 | - <!-- FTP용 3rd party 라이브러리 --> | |
| 315 | - <!-- <dependency> | |
| 316 | - <groupId>commons-net</groupId> | |
| 317 | - <artifactId>commons-net</artifactId> | |
| 318 | - <version>3.6</version> | |
| 319 | - </dependency> --> | |
| 320 | - | |
| 321 | - <!-- Email --> | |
| 322 | - <!-- <dependency> | |
| 323 | - <groupId>org.apache.commons</groupId> | |
| 324 | - <artifactId>commons-email</artifactId> | |
| 325 | - <version>1.5</version> | |
| 326 | - </dependency> | |
| 327 | - <dependency> | |
| 328 | - <groupId>egovframework.module.ems</groupId> | |
| 329 | - <artifactId>sndng-mail</artifactId> | |
| 330 | - <version>1.0</version> | |
| 331 | - </dependency> --> | |
| 332 | - | |
| 333 | - <!-- Jakarta JSP API는 Spring Boot 3에서 기본 제공 --> | |
| 334 | - | |
| 335 | - <!-- LDAP SDK --> | |
| 336 | - <!-- <dependency> | |
| 337 | - <groupId>ldapsdk</groupId> | |
| 338 | - <artifactId>ldapsdk</artifactId> | |
| 339 | - <version>4.1</version> | |
| 340 | - </dependency> --> | |
| 341 | - | |
| 342 | - <!-- PDF변환용 라이브러리 --> | |
| 343 | - <!-- <dependency> | |
| 344 | - <groupId>com.artofsolving</groupId> | |
| 345 | - <artifactId>jodconverter</artifactId> | |
| 346 | - <version>2.2.1</version> | |
| 347 | - <exclusions> | |
| 348 | - <exclusion> | |
| 349 | - <artifactId>slf4j-api</artifactId> | |
| 350 | - <groupId>org.slf4j</groupId> | |
| 351 | - </exclusion> | |
| 352 | - <exclusion> | |
| 353 | - <artifactId>commons-io</artifactId> | |
| 354 | - <groupId>commons-io</groupId> | |
| 355 | - </exclusion> | |
| 356 | - </exclusions> | |
| 357 | - </dependency> --> | |
| 358 | - | |
| 359 | - <!-- XML스키마를 자바클래스로 생성하는 라이브러리 --> | |
| 360 | - <!-- <dependency> | |
| 361 | - <groupId>xmlbeans</groupId> | |
| 362 | - <artifactId>xbean</artifactId> | |
| 363 | - <version>2.2.0</version> | |
| 364 | - </dependency> --> | |
| 365 | - | |
| 366 | - <!-- fileupload --> | |
| 367 | - <dependency> | |
| 368 | - <groupId>commons-fileupload</groupId> | |
| 369 | - <artifactId>commons-fileupload</artifactId> | |
| 370 | - <version>1.3.1</version> | |
| 371 | - <exclusions> | |
| 372 | - <exclusion> | |
| 373 | - <artifactId>commons-io</artifactId> | |
| 374 | - <groupId>commons-io</groupId> | |
| 375 | - </exclusion> | |
| 376 | - </exclusions> | |
| 377 | - </dependency> | |
| 378 | - | |
| 379 | - <!-- Twitter --> | |
| 380 | - <!-- <dependency> | |
| 381 | - <groupId>org.twitter4j</groupId> | |
| 382 | - <artifactId>twitter4j-core</artifactId> | |
| 383 | - <version>4.0.7</version> | |
| 384 | - </dependency> --> | |
| 385 | - | |
| 386 | - <!-- Ajax --> | |
| 387 | - <!-- <dependency> | |
| 388 | - <groupId>net.sourceforge.ajaxtags</groupId> | |
| 389 | - <artifactId>ajaxtags-resources</artifactId> | |
| 390 | - <version>1.5.7</version> | |
| 391 | - </dependency> --> | |
| 392 | - | |
| 393 | - <!-- WYSIWYG Editor --> | |
| 394 | - <!-- <dependency> | |
| 395 | - <groupId>com.ckeditor</groupId> | |
| 396 | - <artifactId>ckeditor-java-core</artifactId> | |
| 397 | - <version>3.5.3</version> | |
| 398 | - </dependency> --> | |
| 399 | - | |
| 400 | - <!-- xmlParserAPI --> | |
| 401 | - <dependency> | |
| 402 | - <groupId>org.apache.xmlgraphics</groupId> | |
| 403 | - <artifactId>batik-ext</artifactId> | |
| 404 | - <version>1.7</version> | |
| 405 | - </dependency> | |
| 406 | - | |
| 407 | - <!-- facebook 연동시 추가 --> | |
| 408 | - <!-- <dependency> | |
| 409 | - <groupId>org.springframework.social</groupId> | |
| 410 | - <artifactId>spring-social-facebook</artifactId> | |
| 411 | - <version>2.0.3.RELEASE</version> | |
| 412 | - <exclusions> | |
| 413 | - <exclusion> | |
| 414 | - <artifactId>spring-web</artifactId> | |
| 415 | - <groupId>org.springframework</groupId> | |
| 416 | - </exclusion> | |
| 417 | - <exclusion> | |
| 418 | - <artifactId>spring-webmvc</artifactId> | |
| 419 | - <groupId>org.springframework</groupId> | |
| 420 | - </exclusion> | |
| 421 | - </exclusions> | |
| 422 | - </dependency> --> | |
| 423 | - | |
| 424 | - <!-- WebSocket Messenger --> | |
| 425 | - <!-- <dependency> | |
| 426 | - <groupId>javax.websocket</groupId> | |
| 427 | - <artifactId>javax.websocket-api</artifactId> | |
| 428 | - <version>1.0</version> | |
| 429 | - <scope>provided</scope> | |
| 430 | - </dependency> | |
| 431 | - <dependency> | |
| 432 | - <groupId>org.glassfish</groupId> | |
| 433 | - <artifactId>javax.json</artifactId> | |
| 434 | - <version>1.0.4</version> | |
| 435 | - </dependency> --> | |
| 436 | - | |
| 437 | - <!-- ajax json --> | |
| 438 | - <!-- social에서 참조 하고 있어 임시 주석 처리 --> | |
| 439 | - | |
| 440 | - <dependency> | |
| 441 | - <groupId>com.fasterxml.jackson.core</groupId> | |
| 442 | - <artifactId>jackson-core</artifactId> | |
| 443 | - <version>2.5.1</version> | |
| 444 | - </dependency> | |
| 445 | - <dependency> | |
| 446 | - <groupId>com.fasterxml.jackson.core</groupId> | |
| 447 | - <artifactId>jackson-annotations</artifactId> | |
| 448 | - <version>2.5.1</version> | |
| 449 | - </dependency> | |
| 450 | - <dependency> | |
| 451 | - <groupId>com.fasterxml.jackson.core</groupId> | |
| 452 | - <artifactId>jackson-databind</artifactId> | |
| 453 | - <version>2.5.1</version> | |
| 454 | - </dependency> | |
| 455 | - | |
| 456 | - | |
| 457 | - <!-- LDAP조직도관리 관련 라이브러리 --> | |
| 458 | - <!-- | |
| 459 | - <dependency> | |
| 460 | - <groupId>org.springframework.ldap</groupId> | |
| 461 | - <artifactId>spring-ldap-core</artifactId> | |
| 462 | - <version>2.3.2.RELEASE</version> | |
| 463 | - <exclusions> | |
| 464 | - <exclusion> | |
| 465 | - <groupId>org.springframework</groupId> | |
| 466 | - <artifactId>spring-beans</artifactId> | |
| 467 | - </exclusion> | |
| 468 | - <exclusion> | |
| 469 | - <groupId>org.springframework</groupId> | |
| 470 | - <artifactId>spring-core</artifactId> | |
| 471 | - </exclusion> | |
| 472 | - <exclusion> | |
| 473 | - <groupId>org.springframework</groupId> | |
| 474 | - <artifactId>spring-tx</artifactId> | |
| 475 | - </exclusion> | |
| 476 | - <exclusion> | |
| 477 | - <groupId>org.slf4j</groupId> | |
| 478 | - <artifactId>slf4j-api</artifactId> | |
| 479 | - </exclusion> | |
| 480 | - <exclusion> | |
| 481 | - <groupId>org.slf4j</groupId> | |
| 482 | - <artifactId>jcl-over-slf4j</artifactId> | |
| 483 | - </exclusion> | |
| 484 | - </exclusions> | |
| 485 | - </dependency> --> | |
| 486 | - <dependency> | |
| 487 | - <groupId>org.codehaus.jackson</groupId> | |
| 488 | - <artifactId>jackson-mapper-asl</artifactId> | |
| 489 | - <version>1.9.2</version> | |
| 490 | - </dependency> | |
| 491 | - | |
| 492 | - <dependency> | |
| 493 | - <groupId>mysql</groupId> | |
| 494 | - <artifactId>mysql-connector-java</artifactId> | |
| 495 | - <version>5.1.31</version> | |
| 496 | - </dependency> | |
| 497 | - | |
| 498 | - <dependency> | |
| 499 | - <groupId>org.mariadb.jdbc</groupId> | |
| 500 | - <artifactId>mariadb-java-client</artifactId> | |
| 501 | - <version>2.2.5</version> | |
| 502 | - </dependency> | |
| 503 | - | |
| 504 | - | |
| 505 | - <!-- <dependency> | |
| 506 | - <groupId>org.postgresql</groupId> | |
| 507 | - <artifactId>postgresql</artifactId> | |
| 508 | - <version>9.4.1208</version> | |
| 509 | - </dependency> --> | |
| 510 | - | |
| 511 | - <!-- 3rd party 라이브러리로 별도의 설치 필요 --> | |
| 512 | - <!-- oracle 11g driver --> | |
| 513 | - <!-- | |
| 514 | - <dependency> | |
| 515 | - <groupId>ojdbc</groupId> | |
| 516 | - <artifactId>ojdbc</artifactId> | |
| 517 | - <version>6-11</version> | |
| 518 | - <scope>system</scope> | |
| 519 | - <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ojdbc6-11.2.0.3.jar</systemPath>
| |
| 520 | - </dependency> | |
| 521 | - --> | |
| 522 | - <!-- altibase driver --> | |
| 523 | - <!-- | |
| 524 | - <dependency> | |
| 525 | - <groupId>altibase</groupId> | |
| 526 | - <artifactId>altibase-jdbc-driver</artifactId> | |
| 527 | - <version>5.1.3.18</version> | |
| 528 | - <scope>system</scope> | |
| 529 | - <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/Altibase.jar</systemPath>
| |
| 530 | - </dependency> | |
| 531 | - --> | |
| 532 | - <!-- tibero driver --> | |
| 533 | - <!-- | |
| 534 | - <dependency> | |
| 535 | - <groupId>com.tmax.tibero</groupId> | |
| 536 | - <artifactId>tibero-jdbc</artifactId> | |
| 537 | - <version>3.0</version> | |
| 538 | - <scope>system</scope> | |
| 539 | - <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/tibero5-jdbc.jar</systemPath>
| |
| 540 | - </dependency> | |
| 541 | - --> | |
| 542 | - <!-- cubrid driver --> | |
| 543 | - <!-- | |
| 544 | - <dependency> | |
| 545 | - <groupId>cubrid</groupId> | |
| 546 | - <artifactId>cubrid-jdbc</artifactId> | |
| 547 | - <version>8.4</version> | |
| 548 | - <scope>system</scope> | |
| 549 | - <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/cubrid_jdbc.jar</systemPath>
| |
| 550 | - </dependency> | |
| 551 | - --> | |
| 552 | - <!-- M-Gov (SMS Service API) --> | |
| 553 | - <!-- <dependency> | |
| 554 | - <groupId>kr.go.mgov</groupId> | |
| 555 | - <artifactId>smeapi</artifactId> | |
| 556 | - <version>2.7</version> | |
| 557 | - <scope>system</scope> | |
| 558 | - <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/smeapi_2_7.jar</systemPath>
| |
| 559 | - </dependency> --> | |
| 560 | - <!-- GPKI인증서 로그인처리 라이브러리 --> | |
| 561 | - <!-- <dependency> | |
| 562 | - <groupId>kr.go.gpki</groupId> | |
| 563 | - <artifactId>gpkisecureweb</artifactId> | |
| 564 | - <version>1.0.4.9</version> | |
| 565 | - <scope>system</scope> | |
| 566 | - <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/gpkisecureweb-1.0.4.9.jar</systemPath>
| |
| 567 | - </dependency> | |
| 568 | - <dependency> | |
| 569 | - <groupId>kr.go.gpki</groupId> | |
| 570 | - <artifactId>libgpkiapi_jni</artifactId> | |
| 571 | - <version>1.4.0.0</version> | |
| 572 | - <scope>system</scope> | |
| 573 | - <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/libgpkiapi_jni-1.4.0.0.jar</systemPath>
| |
| 574 | - </dependency> --> | |
| 575 | - <!-- 3rd party 라이브러리로 별도의 설치 필요 끝 --> | |
| 576 | - | |
| 577 | - <!-- 공통컴포넌트 끝 --> | |
| 578 | - | |
| 579 | - <!-- oauth2 login --> | |
| 580 | - <!-- | |
| 581 | - <dependency> | |
| 582 | - <groupId>com.github.scribejava</groupId> | |
| 583 | - <artifactId>scribejava-apis</artifactId> | |
| 584 | - <version>5.6.0</version> | |
| 585 | - </dependency> | |
| 586 | - | |
| 587 | - <dependency> | |
| 588 | - <groupId>com.github.scribejava</groupId> | |
| 589 | - <artifactId>scribejava-core</artifactId> | |
| 590 | - <version>5.6.0</version> | |
| 591 | - </dependency> | |
| 592 | - --> | |
| 593 | - <dependency> | |
| 594 | - <groupId>com.github.scribejava</groupId> | |
| 595 | - <artifactId>scribejava-core</artifactId> | |
| 596 | - <version>2.8.1</version> | |
| 597 | - </dependency> | |
| 598 | - | |
| 599 | - <dependency> | |
| 600 | - <groupId>org.apache.httpcomponents</groupId> | |
| 601 | - <artifactId>httpclient</artifactId> | |
| 602 | - <version>4.5.13</version> | |
| 603 | - </dependency> | |
| 604 | - | |
| 605 | - <dependency> | |
| 606 | - <groupId>com.h2database</groupId> | |
| 607 | - <artifactId>h2</artifactId> | |
| 608 | - <version>1.4.180</version> | |
| 609 | - <scope>test</scope> | |
| 610 | - </dependency> | |
| 611 | - | |
| 612 | - <dependency> | |
| 613 | - <groupId>com.drewnoakes</groupId> | |
| 614 | - <artifactId>metadata-extractor</artifactId> | |
| 615 | - <version>2.6.2</version> | |
| 616 | - </dependency> | |
| 617 | - | |
| 618 | - <dependency> | |
| 619 | - <groupId>com.squareup.okhttp3</groupId> | |
| 620 | - <artifactId>okhttp</artifactId> | |
| 621 | - <version>4.2.2</version> | |
| 622 | - </dependency> | |
| 623 | - | |
| 624 | - <!-- mybatis log4jdbc-log4j2 라이브러리 --> | |
| 625 | - <dependency> | |
| 626 | - <groupId>org.bgee.log4jdbc-log4j2</groupId> | |
| 627 | - <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId> | |
| 628 | - <version>1.16</version> | |
| 629 | - </dependency> | |
| 630 | - | |
| 631 | - <dependency> | |
| 632 | - <groupId>net.sf</groupId> | |
| 633 | - <artifactId>log4jdbc3</artifactId> | |
| 634 | - <version>1.1</version> | |
| 635 | - </dependency> | |
| 636 | - | |
| 637 | - <dependency> | |
| 638 | - <groupId>org.springframework.boot</groupId> | |
| 639 | - <artifactId>spring-boot-starter-test</artifactId> | |
| 640 | - <scope>test</scope> | |
| 641 | - </dependency> | |
| 642 | - | |
| 643 | - </dependencies> | |
| 644 | - | |
| 645 | - | |
| 646 | - | |
| 647 | - <build> | |
| 648 | - <defaultGoal>install</defaultGoal> | |
| 649 | - <directory>${basedir}/target</directory>
| |
| 650 | - <finalName>${artifactId}-${version}</finalName>
| |
| 651 | - <pluginManagement> | |
| 652 | - <plugins> | |
| 653 | - <plugin> | |
| 654 | - <groupId>org.apache.tomcat.maven</groupId> | |
| 655 | - <artifactId>tomcat7-maven-plugin</artifactId> | |
| 656 | - <version>2.2</version> | |
| 657 | - <configuration> | |
| 658 | - <port>80</port> | |
| 659 | - <path>/</path> | |
| 660 | - <systemProperties> | |
| 661 | - <JAVA_OPTS>-Xms256m -Xmx768m -XX:MaxPermSize=256m</JAVA_OPTS> | |
| 662 | - </systemProperties> | |
| 663 | - </configuration> | |
| 664 | - </plugin> | |
| 665 | - <plugin> | |
| 666 | - <groupId>org.apache.maven.plugins</groupId> | |
| 667 | - <artifactId>maven-compiler-plugin</artifactId> | |
| 668 | - <configuration> | |
| 669 | - <source>${java.version}</source> | |
| 670 | - <target>${java.version}</target> | |
| 671 | - <encoding>UTF-8</encoding> | |
| 672 | - </configuration> | |
| 673 | - </plugin> | |
| 674 | - <plugin> | |
| 675 | - <groupId>org.apache.maven.plugins</groupId> | |
| 676 | - <artifactId>maven-war-plugin</artifactId> | |
| 677 | - <version>2.4</version> | |
| 678 | - <configuration> | |
| 679 | - <failOnMissingWebXml>false</failOnMissingWebXml> | |
| 680 | - </configuration> | |
| 681 | - </plugin> | |
| 682 | - <plugin> | |
| 683 | - <groupId>org.codehaus.mojo</groupId> | |
| 684 | - <artifactId>hibernate3-maven-plugin</artifactId> | |
| 685 | - <version>3.0</version> | |
| 686 | - <configuration> | |
| 687 | - <components> | |
| 688 | - <component> | |
| 689 | - <name>hbm2ddl</name> | |
| 690 | - <implementation>annotationconfiguration</implementation> | |
| 691 | - </component> | |
| 692 | - </components> | |
| 693 | - </configuration> | |
| 694 | - <dependencies> | |
| 695 | - <dependency> | |
| 696 | - <groupId>org.hsqldb</groupId> | |
| 697 | - <artifactId>hsqldb</artifactId> | |
| 698 | - <!--<version>3.0.0</version>--> | |
| 699 | - </dependency> | |
| 700 | - </dependencies> | |
| 701 | - </plugin> | |
| 702 | - <!-- EMMA --> | |
| 703 | - <plugin> | |
| 704 | - <groupId>org.codehaus.mojo</groupId> | |
| 705 | - <artifactId>emma-maven-plugin</artifactId> | |
| 706 | - <version>1.0-alpha-3</version> | |
| 707 | - </plugin> | |
| 708 | - <!-- PMD manven plugin --> | |
| 709 | - <plugin> | |
| 710 | - <groupId>org.apache.maven.plugins</groupId> | |
| 711 | - <artifactId>maven-pmd-plugin</artifactId> | |
| 712 | - <version>3.12.0</version> | |
| 713 | - </plugin> | |
| 714 | - </plugins> | |
| 715 | - </pluginManagement> | |
| 716 | - <plugins> | |
| 717 | - <!-- EMMA --> | |
| 718 | - <plugin> | |
| 719 | - <groupId>org.apache.maven.plugins</groupId> | |
| 720 | - <artifactId>maven-surefire-plugin</artifactId> | |
| 721 | - <configuration> | |
| 722 | - <skipTests>false</skipTests> | |
| 723 | - <forkMode>once</forkMode> | |
| 724 | - <reportFormat>xml</reportFormat> | |
| 725 | - <excludes> | |
| 726 | - <exclude>**/Abstract*.java</exclude> | |
| 727 | - <exclude>**/*Suite.java</exclude> | |
| 728 | - </excludes> | |
| 729 | - <includes> | |
| 730 | - <include>**/*Test.java</include> | |
| 731 | - </includes> | |
| 732 | - </configuration> | |
| 733 | - </plugin> | |
| 734 | - <plugin> | |
| 735 | - <groupId>org.codehaus.mojo</groupId> | |
| 736 | - <artifactId>emma-maven-plugin</artifactId> | |
| 737 | - <inherited>true</inherited> | |
| 738 | - </plugin> | |
| 739 | - <!-- JavaDoc --> | |
| 740 | - <plugin> | |
| 741 | - <groupId>org.apache.maven.plugins</groupId> | |
| 742 | - <artifactId>maven-javadoc-plugin</artifactId> | |
| 743 | - <version>3.1.1</version> | |
| 744 | - </plugin> | |
| 745 | - <plugin> | |
| 746 | - <groupId>org.springframework.boot</groupId> | |
| 747 | - <artifactId>spring-boot-maven-plugin</artifactId> | |
| 748 | - <version>${spring-boot.version}</version> | |
| 749 | - </plugin> | |
| 750 | - </plugins> | |
| 751 | - <resources> | |
| 752 | - <resource> | |
| 753 | - <directory>src/main/resources</directory> | |
| 754 | - </resource> | |
| 755 | - <resource> | |
| 756 | - <directory>src/main/resources-${env}</directory>
| |
| 757 | - </resource> | |
| 758 | - <resource> | |
| 759 | - <directory>src/main/java</directory> | |
| 760 | - <includes> | |
| 761 | - <include>**/*.xml</include> | |
| 762 | - </includes> | |
| 763 | - </resource> | |
| 764 | - </resources> | |
| 765 | - </build> | |
| 766 | - | |
| 767 | - <profiles> | |
| 768 | - <profile> | |
| 769 | - <id>local</id> | |
| 770 | - <properties> | |
| 771 | - <env>local</env> | |
| 772 | - </properties> | |
| 773 | - </profile> | |
| 774 | - <profile> | |
| 775 | - <id>dev</id> | |
| 776 | - <activation> | |
| 777 | - <activeByDefault>true</activeByDefault> | |
| 778 | - </activation> | |
| 779 | - <properties> | |
| 780 | - <env>dev</env> | |
| 781 | - </properties> | |
| 782 | - </profile> | |
| 783 | - <profile> | |
| 784 | - <id>real</id> | |
| 785 | - <properties> | |
| 786 | - <env>real</env> | |
| 787 | - </properties> | |
| 788 | - </profile> | |
| 789 | - </profiles> | |
| 790 | - | |
| 791 | - <!--<reporting> | |
| 792 | - <outputDirectory>${basedir}/target/site</outputDirectory>
| |
| 793 | - <plugins> | |
| 794 | - <plugin> | |
| 795 | - <groupId>org.apache.maven.plugins</groupId> | |
| 796 | - <artifactId>maven-project-info-reports-plugin</artifactId> | |
| 797 | - <version>3.0.0</version> | |
| 798 | - <reportSets> | |
| 799 | - <reportSet> | |
| 800 | - <id>sunlink</id> | |
| 801 | - <reports> | |
| 802 | - <report>javadoc</report> | |
| 803 | - </reports> | |
| 804 | - <inherited>true</inherited> | |
| 805 | - <configuration> | |
| 806 | - <links> | |
| 807 | - <link>http://docs.oracle.com/javase/6/docs/api/</link> | |
| 808 | - </links> | |
| 809 | - </configuration> | |
| 810 | - </reportSet> | |
| 811 | - </reportSets> | |
| 812 | - </plugin> | |
| 813 | - <!– JUnit Test Results & EMMA Coverage Reporting –> | |
| 814 | - <plugin> | |
| 815 | - <groupId>org.codehaus.mojo</groupId> | |
| 816 | - <artifactId>emma-maven-plugin</artifactId> | |
| 817 | - <inherited>true</inherited> | |
| 818 | - </plugin> | |
| 819 | - <plugin> | |
| 820 | - <groupId>org.codehaus.mojo</groupId> | |
| 821 | - <artifactId>surefire-report-maven-plugin</artifactId> | |
| 822 | - <inherited>true</inherited> | |
| 823 | - <reportSets> | |
| 824 | - <reportSet> | |
| 825 | - <reports> | |
| 826 | - <report>report-only</report> | |
| 827 | - </reports> | |
| 828 | - </reportSet> | |
| 829 | - </reportSets> | |
| 830 | - </plugin> | |
| 831 | - <!– Generating JavaDoc Report –> | |
| 832 | - <plugin> | |
| 833 | - <groupId>org.apache.maven.plugins</groupId> | |
| 834 | - <artifactId>maven-javadoc-plugin</artifactId> | |
| 835 | - <configuration> | |
| 836 | - <minmemory>128m</minmemory> | |
| 837 | - <maxmemory>512m</maxmemory> | |
| 838 | - <encoding>${encoding}</encoding>
| |
| 839 | - <docencoding>${encoding}</docencoding>
| |
| 840 | - <charset>${encoding}</charset>
| |
| 841 | - </configuration> | |
| 842 | - </plugin> | |
| 843 | - <!– Generating Java Source in HTML –> | |
| 844 | - <plugin> | |
| 845 | - <groupId>org.apache.maven.plugins</groupId> | |
| 846 | - <artifactId>maven-jxr-plugin</artifactId> | |
| 847 | - <configuration> | |
| 848 | - <inputEncoding>${encoding}</inputEncoding>
| |
| 849 | - <outputEncoding>${encoding}</outputEncoding>
| |
| 850 | - <linkJavadoc>true</linkJavadoc> | |
| 851 | - <javadocDir>apidocs</javadocDir> | |
| 852 | - </configuration> | |
| 853 | - </plugin> | |
| 854 | - </plugins> | |
| 855 | - </reporting>--> | |
| 856 | -</project> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?