6
6
<artifactId >oss-parent</artifactId >
7
7
<version >5</version >
8
8
</parent >
9
- <groupId >uk. com.robust-it </groupId >
9
+ <groupId >com.rits </groupId >
10
10
<artifactId >cloning</artifactId >
11
11
<packaging >bundle</packaging >
12
12
<version >1.9.1-SNAPSHOT</version >
13
13
<name >cloning</name >
14
14
<url >https://code.google.com/p/cloning/</url >
15
15
<description ><![CDATA[
16
- The cloning library is a small, open source (Apache
17
- licensed) Java library which deep-clones objects. The
18
- objects do not have to implement the Cloneable
19
- interface. Effectivelly , this library can clone ANY
20
- Java object. It can be used i.e. in cache
21
- implementations, if you don't want the cached object
22
- to be modified or whenever you want to create a deep
23
- copy of an object.
16
+ The cloning library is a small, open source (Apache
17
+ licensed) Java library which deep-clones objects. The
18
+ objects do not have to implement the Cloneable
19
+ interface. Effectively , this library can clone ANY
20
+ Java object. It can be used i.e. in cache
21
+ implementations, if you don't want the cached object
22
+ to be modified or whenever you want to create a deep
23
+ copy of an object.
24
24
25
- Sample usage:
25
+ Sample usage:
26
26
27
- You can create a single instance of cloner and use it throughout your application. i.e.
28
- Cloner cloner=new Cloner();
29
- ...
30
- cloner.deepClone(o);
27
+ You can create a single instance of cloner and use it throughout your application. i.e.
28
+ Cloner cloner=new Cloner();
29
+ ...
30
+ cloner.deepClone(o);
31
31
32
- Please check http://robust-it.co.uk/clone/ for more examples (spring integration, immutable objects etc)
33
- ]]> </description >
32
+ Please check http://robust-it.co.uk/clone/ for more examples (spring integration, immutable objects etc)
33
+ ]]> </description >
34
34
<licenses >
35
35
<license >
36
36
<name >Apache License, Version 2.0</name >
53
53
<plugins >
54
54
<plugin >
55
55
<artifactId >maven-compiler-plugin</artifactId >
56
- <version >2.3.2 </version >
56
+ <version >3.1 </version >
57
57
<configuration >
58
58
<source >1.5</source >
59
59
<target >1.5</target >
60
60
</configuration >
61
61
</plugin >
62
62
<plugin >
63
63
<artifactId >maven-surefire-plugin</artifactId >
64
- <version >2.8 </version >
64
+ <version >2.15 </version >
65
65
<configuration >
66
66
<includes >
67
67
<include >**/Test*.java</include >
70
70
</plugin >
71
71
<plugin >
72
72
<artifactId >maven-source-plugin</artifactId >
73
- <version >2.1.2 </version >
73
+ <version >2.2.1 </version >
74
74
<executions >
75
75
<execution >
76
76
<id >attach-sources</id >
82
82
</plugin >
83
83
<plugin >
84
84
<artifactId >maven-javadoc-plugin</artifactId >
85
- <version >2.7 </version >
85
+ <version >2.9.1 </version >
86
86
<executions >
87
87
<execution >
88
88
<id >attach-javadocs</id >
94
94
</plugin >
95
95
<plugin >
96
96
<artifactId >maven-release-plugin</artifactId >
97
- <version >2.2 .1</version >
97
+ <version >2.4 .1</version >
98
98
</plugin >
99
99
<plugin >
100
100
<artifactId >maven-repository-plugin</artifactId >
101
101
<version >2.3.1</version >
102
102
</plugin >
103
103
<plugin >
104
104
<artifactId >maven-assembly-plugin</artifactId >
105
- <version >2.2.1 </version >
105
+ <version >2.4 </version >
106
106
<executions >
107
107
<execution >
108
108
<phase >package</phase >
123
123
<plugin >
124
124
<groupId >org.apache.felix</groupId >
125
125
<artifactId >maven-bundle-plugin</artifactId >
126
- <version >2.3.7 </version >
126
+ <version >2.4.0 </version >
127
127
<extensions >true</extensions >
128
128
</plugin >
129
129
</plugins >
132
132
<dependency >
133
133
<groupId >junit</groupId >
134
134
<artifactId >junit</artifactId >
135
- <version >4.10 </version >
135
+ <version >4.11 </version >
136
136
<scope >test</scope >
137
137
</dependency >
138
138
<dependency >
139
139
<groupId >org.objenesis</groupId >
140
140
<artifactId >objenesis</artifactId >
141
- <version >1.2 </version >
141
+ <version >1.3 </version >
142
142
</dependency >
143
143
</dependencies >
144
144
<profiles >
167
167
</build >
168
168
</profile >
169
169
</profiles >
170
- </project >
170
+ </project >
0 commit comments