Download from maven - spring-context, aspectj weaver, cglib, springframework
1. http://mvnrepository.com/ 접속
[spring-context]
2.1. search keywords: spring context
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.1. search keywords: 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.1. search keywords: 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.1. search keywords: 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>