* yasin.bhojawala@gmail.com Evaluation article on Different Types of Bean Injection in Spring * Revert "yasin.bhojawala@gmail.com" This reverts commit 963cc51a7a15b75b550108fe4e198cd65a274032. * Fixing compilation error and removing unused import * Introduction to Java9 StackWalking API - yasin.bhojawala@gmail.com Code examples for the article "Introduction to Java9 StackWalking API" * BAEL-608 Introduction to Java9 StackWalking API * BAEL-608 Introduction to Java9 StackWalking API changing the test names to BDD style * BAEL-608 Introduction to Java9 StackWalking API correcting the typo * BAEL-608 Introduction to Java9 StackWalking API improving method names * BAEL-608 Introduction to Java9 StackWalking API test method names improvements * BAEL-718 Quick intro to javatuples * merging pom from master * BAEL-722 Intro to JSONassert * BAEL-722 Intro to JSONassert Updated to 1.5.0
		
			
				
	
	
		
			83 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
|     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
|     <parent>
 | |
|         <artifactId>parent-modules</artifactId>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|     </parent>
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
| 
 | |
|     <artifactId>libraries</artifactId>
 | |
|     <name>libraries</name>
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <configuration>
 | |
|                     <source>1.8</source>
 | |
|                     <target>1.8</target>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <dependencies>
 | |
|         <!-- https://mvnrepository.com/artifact/cglib/cglib -->
 | |
|         <dependency>
 | |
|             <groupId>cglib</groupId>
 | |
|             <artifactId>cglib</artifactId>
 | |
|             <version>${cglib.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-lang3</artifactId>
 | |
|             <version>${commons-lang.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>junit</groupId>
 | |
|             <artifactId>junit</artifactId>
 | |
|             <version>${junit.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.jasypt</groupId>
 | |
|             <artifactId>jasypt</artifactId>
 | |
|             <version>${jasypt.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.javatuples</groupId>
 | |
|             <artifactId>javatuples</artifactId>
 | |
|             <version>${javatuples.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.javassist</groupId>
 | |
|             <artifactId>javassist</artifactId>
 | |
|             <version>${javaassist.version}</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
 | |
|         <dependency>
 | |
|             <groupId>org.assertj</groupId>
 | |
|             <artifactId>assertj-core</artifactId>
 | |
|             <version>${assertj.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.skyscreamer</groupId>
 | |
|             <artifactId>jsonassert</artifactId>
 | |
|             <version>${jsonassert.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <properties>
 | |
|         <cglib.version>3.2.4</cglib.version>
 | |
|         <commons-lang.version>3.5</commons-lang.version>
 | |
|         <junit.version>4.12</junit.version>
 | |
|         <jasypt.version>1.9.2</jasypt.version>
 | |
|         <javatuples.version>1.2</javatuples.version>
 | |
|         <javaassist.version>3.21.0-GA</javaassist.version>
 | |
|         <assertj.version>3.6.2</assertj.version>
 | |
|         <jsonassert.version>1.5.0</jsonassert.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |