Re: 2.2.3 realse
Henri Tremblay <[email protected]> Sat, 28 Jul 2012 01:02:23 +0200
| Newsgroups | gmane.comp.java.cglib.devel |
|---|---|
| Message-ID | <CADZL2=vYwFdi6G0SaxqpWrcCWh1LeAN_w7YxKW+pSbvs1t6chw@mail.gmail.com> |
oh... obviously forgot the pom. Here it is. On 28 July 2012 01:01, Henri Tremblay <[email protected]> wrote: > That seems interesting. > > I would like to test that version. > > The easiest to be able to compile with maven 2. > > I've started a pom. There's no jarjar yet and 3 tests are failing (I > don't know if it's the pom fault or there are just failing. Here they > are:) > ################ > Failed tests: > testRegisterCallbacks(net.sf.cglib.proxy.TestEnhancer): > expected:<[test]> but was:<[soda]> > > Tests in error: > testBeanMap(net.sf.cglib.beans.TestBeanMapProxy): interface > net.sf.cglib.beans.TestBeanMapProxy$Person is not visible > from class loader > testSorts(net.sf.cglib.util.TestParallelSorter) > testSorts(net.sf.cglib.util.TestParallelSorter) > ################ > > Tell me if your interested in having a complete version. > > Cheers, > Henri > > > On 27 July 2012 19:22, baliuka juozas <baliuka-/[email protected]> wrote: >> Hi, >> I uploaded new release from cglib2 branch, it contains fix for memory >> leak reported by Kestutis >> http://cglib.cvs.sourceforge.net/viewvc/cglib/cglib/src/proxy/net/sf/cglib/transform/impl/UndeclaredThrowableStrategy.java?r1=1.3&r2=1.3.2.1&pathrev=RELEASE_2_2_3 >> >> private field "t" seen in this diff references all objects created during byte >> code processing, local variable saves ~200 MB consumed on startup for one of >> very large application with many proxy classes. >> 2.2.3 directory is staged and available for project members only. >> Release will be publically available next week here >> https://sourceforge.net/projects/cglib/files/cglib2/2.2.3/ >> >> ------------------------------------------------------------------------------ >> Live Security Virtual Conference >> Exclusive live event will cover all the ways today's security and >> threat landscape has changed and how IT managers can respond. Discussions >> will include endpoint security, mobile security and the latest in malware >> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> _______________________________________________ >> cglib-devel mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/cglib-devel ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ cglib-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/cglib-devel
pom.xml
(text/xml, 3.6 KB)
<?xml version="1.0" encoding="ISO-8859-1"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>2.2.3</version>
<name>cglib</name>
<description>Byte Code Generation Library is high level API to generate and transform JAVA byte code. It is used by AOP, testing, data access frameworks to generate dynamic proxy objects and intercept field access.</description>
<inceptionYear>2002</inceptionYear>
<mailingLists>
<mailingList>
<name>cglib developer list</name>
<subscribe>http://lists.sourceforge.net/lists/listinfo/cglib-devel</subscribe>
<unsubscribe>http://lists.sourceforge.net/lists/listinfo/cglib-devel</unsubscribe>
<archive>http://sourceforge.net/mail/?group_id=56933</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<id>baliuka</id>
<name>Juozas Baliuka</name>
<email>[email protected]</email>
<roles>
<role>Administrator</role>
<role>Release Manager</role>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>herbyderby</id>
<name>Chris Nokleberg</name>
<email>[email protected]</email>
<roles>
<role>Administrator</role>
<role>Release Manager</role>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>mr226maf</id>
<name>Matas Ramoska</name>
<email>[email protected]</email>
<roles>
<role>Administrator</role>
<role>Release Manager</role>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>wbiggs</id>
<name>Wes Biggs</name>
<email>[email protected]</email>
<organization></organization>
<roles>
<role>Administrator</role>
<role>Release Manager</role>
<role>Developer</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-commons</artifactId>
<version>3.3.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-util</artifactId>
<version>3.3.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.6.2</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/proxy</sourceDirectory>
<testSourceDirectory>src/test</testSourceDirectory>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>${project.artifactId}-${project.version}</finalName>
<descriptors>
<descriptor>${basedir}/src/main/assembly/assembly-tests.xml</descriptor>
<descriptor>${basedir}/src/main/assembly/assembly-samples.xml</descriptor>
<descriptor>${basedir}/src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
</project>