| 1 | |
---|
| 2 | * nexus 설치 |
---|
| 3 | |
---|
| 4 | * jenkins 설치 |
---|
| 5 | |
---|
| 6 | * maven 설치 |
---|
| 7 | * setting.xml |
---|
| 8 | {{{ |
---|
| 9 | <localRepository>C:/eGovFrameDev-2.0.1-FullVer/mavenrepository_2.0/repository</localRepository> |
---|
| 10 | |
---|
| 11 | <mirrors> |
---|
| 12 | <mirror> |
---|
| 13 | <id>nexus</id> |
---|
| 14 | <mirrorOf>*</mirrorOf> |
---|
| 15 | <url>http://221.150.127.106:8082/nexus/content/groups/public</url> |
---|
| 16 | </mirror> |
---|
| 17 | </mirrors> |
---|
| 18 | |
---|
| 19 | <profiles> |
---|
| 20 | <profile> |
---|
| 21 | <id>nexus</id> |
---|
| 22 | <repositories> |
---|
| 23 | <repository> |
---|
| 24 | <id>central</id> |
---|
| 25 | <url>http://central</url> |
---|
| 26 | <releases><enabled>true</enabled></releases> |
---|
| 27 | <snapshots><enabled>true</enabled></snapshots> |
---|
| 28 | </repository> |
---|
| 29 | </repositories> |
---|
| 30 | <pluginRepositories> |
---|
| 31 | <pluginRepository> |
---|
| 32 | <id>central</id> |
---|
| 33 | <url>http://central</url> |
---|
| 34 | <releases><enabled>true</enabled></releases> |
---|
| 35 | <snapshots><enabled>true</enabled></snapshots> |
---|
| 36 | </pluginRepository> |
---|
| 37 | </pluginRepositories> |
---|
| 38 | </profile> |
---|
| 39 | </profiles> |
---|
| 40 | |
---|
| 41 | <activeProfiles> |
---|
| 42 | <activeProfile>nexus</activeProfile> |
---|
| 43 | </activeProfiles> |
---|
| 44 | }}} |
---|
| 45 | * pom.xml |