1. http://mvnrepository.com/ 접속
2.2. 1st. Spring Context > Click
2.3. 4.0.7 Release > Click
2.4. Copy the text in Maven :
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.0.7.RELEASE</version>
</dependency
2.5. Paste the text at the 'pom.xml' in Eclipse
<project xmlns="xxxxxx">
......
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.0.7.RELEASE</version>
</dependency>
</dependencies>
</project>
3. aspectj weaver, cglib, springframework 또한 위와 같이 반복한다
[aspectj weaver]
4.2. 1st. aspectj weaver > Click
4.3. 1.8.2 Release > Click
4.4. Copy the text in Maven & Paste the text at the 'pom.xml' in Eclipse :
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.2</version>
</dependency>
[cglib]
5.2. 1st. Code Generation Library > Click
5.3. 3.1 > Click
5.4. Copy the text in Maven & Paste the text at the 'pom.xml' in Eclipse :
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>3.1</version>
</dependency>
[springframework ]
6.2. 1st. Spring TestContext Framework > Click
6.3. 4.0.7 Release > Click
6.4. Copy the text in Maven & Paste the text at the 'pom.xml' in Eclipse :
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.0.7.RELEASE</version>
</dependency>
'IT' 카테고리의 다른 글
[python] pyenv 로 여러 파이썬 버전 사용 (0) | 2023.08.24 |
---|---|
[Eclipse]Spring Setup[1] & Eclipse plugin (0) | 2014.09.25 |