You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by fa...@apache.org on 2018/01/30 12:57:47 UTC

svn commit: r1822636 - in /poi/trunk: .classpath build.xml

Author: fanningpj
Date: Tue Jan 30 12:57:47 2018
New Revision: 1822636

URL: http://svn.apache.org/viewvc?rev=1822636&view=rev
Log:
add byte-buddy and objenesis dependencies for mockito

Modified:
    poi/trunk/.classpath
    poi/trunk/build.xml

Modified: poi/trunk/.classpath
URL: http://svn.apache.org/viewvc/poi/trunk/.classpath?rev=1822636&r1=1822635&r2=1822636&view=diff
==============================================================================
--- poi/trunk/.classpath (original)
+++ poi/trunk/.classpath Tue Jan 30 12:57:47 2018
@@ -36,5 +36,8 @@
 	<classpathentry exported="true" kind="lib" path="lib/commons-collections4-4.1.jar"/>
 	<classpathentry kind="lib" path="lib/commons-math3-3.6.1.jar"/>
 	<classpathentry kind="lib" path="lib/mockito-core-2.13.0.jar"/>
+	<classpathentry kind="lib" path="lib/byte-buddy-1.7.9"/>
+	<classpathentry kind="lib" path="lib/byte-buddy-agent-1.7.9"/>
+	<classpathentry kind="lib" path="lib/objensis-2.6.jar"/>
 	<classpathentry kind="output" path="bin"/>
 </classpath>

Modified: poi/trunk/build.xml
URL: http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1822636&r1=1822635&r2=1822636&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Tue Jan 30 12:57:47 2018
@@ -166,7 +166,13 @@ under the License.
     <property name="main.hamcrest.url" value="${repository.m2}/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar"/>
     <property name="main.mockito.jar" location="${main.lib}/mockito-core-2.13.0.jar"/>
     <property name="main.mockito.url" value="${repository.m2}/maven2/org/mockito/mockito-core/2.13.0/mockito-core-2.13.0.jar"/>
+    <property name="main.byte-buddy.jar" location="${main.lib}/byte-buddy-1.7.9.jar"/>
+    <property name="main.byte-buddy.url" value="${repository.m2}/maven2/net/bytebuddy/byte-buddy/1.7.9/byte-buddy-1.7.9.jar"/>
+    <property name="main.byte-buddy-agent.jar" location="${main.lib}/byte-buddy-agent-1.7.9.jar"/>
+    <property name="main.byte-buddy-agent.url" value="${repository.m2}/maven2/net/bytebuddy/byte-buddy-agent/1.7.9/byte-buddy-agent-1.7.9.jar"/>
     <property name="main.ant.jar" location="${main.lib}/ant-1.10.1.jar"/>
+    <property name="main.objenesis.jar" location="${main.lib}/objenesis-2.6.jar"/>
+    <property name="main.objenesis.url" value="${repository.m2}/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.jar"/>
     <property name="main.ant.url" value="${repository.m2}/maven2/org/apache/ant/ant/1.10.1/ant-1.10.1.jar"/>
     <property name="main.antlauncher.jar" location="${main.lib}/ant-launcher-1.10.1.jar"/>
     <property name="main.antlauncher.url" value="${repository.m2}/maven2/org/apache/ant/ant-launcher/1.10.1/ant-launcher-1.10.1.jar"/>
@@ -320,6 +326,9 @@ under the License.
         <pathelement location="${main.jmhAnnotation.jar}"/>
         <pathelement location="${main.hamcrest.jar}"/>
         <pathelement location="${main.mockito.jar}"/>
+        <pathelement location="${main.byte-buddy.jar}"/>
+        <pathelement location="${main.byte-buddy-agent.jar}"/>
+        <pathelement location="${main.objenesis.jar}"/>
     </path>
 
     <path id="scratchpad.classpath">
@@ -624,6 +633,9 @@ under the License.
                     <available file="${main.jmhAnnotation.jar}"/>
                     <available file="${main.hamcrest.jar}"/>
                     <available file="${main.mockito.jar}"/>
+                    <available file="${main.byte-buddy.jar}"/>
+                    <available file="${main.byte-buddy-agent.jar}"/>
+                    <available file="${main.objenesis.jar}"/>
                     <available file="${main.ant.jar}"/>
                     <available file="${main.antlauncher.jar}"/>
                     <available file="${asm.jar}"/>
@@ -656,6 +668,9 @@ under the License.
         <downloadfile src="${main.jmhAnnotation.url}" dest="${main.jmhAnnotation.jar}"/>
         <downloadfile src="${main.hamcrest.url}" dest="${main.hamcrest.jar}"/>
         <downloadfile src="${main.mockito.url}" dest="${main.mockito.jar}"/>
+        <downloadfile src="${main.byte-buddy.url}" dest="${main.byte-buddy.jar}"/>
+        <downloadfile src="${main.byte-buddy-agent.url}" dest="${main.byte-buddy-agent.jar}"/>
+        <downloadfile src="${main.objenesis.url}" dest="${main.objenesis.jar}"/>
         <downloadfile src="${main.ant.url}" dest="${main.ant.jar}"/>
         <downloadfile src="${main.antlauncher.url}" dest="${main.antlauncher.jar}"/>
         <downloadfile src="${asm.url}" dest="${asm.jar}"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org