Skip to content

Commit

Permalink
LPS-55043 Ivy cache
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Apr 20, 2015
1 parent 1b37ce0 commit b60e3d7
Show file tree
Hide file tree
Showing 57 changed files with 2,772 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .ivy/cache/com.esotericsoftware.kryo/kryo/ivy-2.20.xml
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="com.esotericsoftware.kryo"
module="kryo"
revision="2.20"
status="release"
publication="20120920235249"
>
<license name="New BSD License" url="http://www.opensource.org/licenses/bsd-license.php" />
<description homepage="http://code.google.com/p/kryo/">
Fast, efficient Java serialization
</description>
<m:properties__project.build.sourceEncoding>UTF-8</m:properties__project.build.sourceEncoding>
<m:properties__sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</m:properties__sonatypeOssDistMgmtSnapshotsUrl>
<m:maven.plugins>org.apache.maven.plugins__maven-enforcer-plugin__1.0|org.apache.maven.plugins__maven-enforcer-plugin__1.0|null__maven-resources-plugin__2.5|org.apache.maven.plugins__maven-jar-plugin__2.4|org.apache.maven.plugins__maven-shade-plugin__1.7</m:maven.plugins>
</info>
<configurations>
<conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf" extends="runtime,master"/>
<conf name="master" visibility="public" description="contains only the artifact published by this module itself, with no transitive dependencies"/>
<conf name="compile" visibility="public" description="this is the default scope, used if none is specified. Compile dependencies are available in all classpaths."/>
<conf name="provided" visibility="public" description="this is much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive."/>
<conf name="runtime" visibility="public" description="this scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath." extends="compile"/>
<conf name="test" visibility="private" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases." extends="runtime"/>
<conf name="system" visibility="public" description="this scope is similar to provided except that you have to provide the JAR which contains it explicitly. The artifact is always available and is not looked up in a repository."/>
<conf name="sources" visibility="public" description="this configuration contains the source artifact of this module, if any."/>
<conf name="javadoc" visibility="public" description="this configuration contains the javadoc artifact of this module, if any."/>
<conf name="optional" visibility="public" description="contains all optional dependencies"/>
</configurations>
<publications>
<artifact name="kryo" type="jar" ext="jar" conf="master"/>
<artifact name="kryo" type="source" ext="jar" conf="sources" m:classifier="sources"/>
<artifact name="kryo" type="javadoc" ext="jar" conf="javadoc" m:classifier="javadoc"/>
</publications>
<dependencies>
<dependency org="com.esotericsoftware.reflectasm" name="reflectasm" rev="1.07" force="true" conf="compile->compile(*),master(*);runtime->runtime(*)">
<artifact name="reflectasm" type="jar" ext="jar" conf="" m:classifier="shaded"/>
</dependency>
<dependency org="com.esotericsoftware.minlog" name="minlog" rev="1.2" force="true" conf="compile->compile(*),master(*);runtime->runtime(*)"/>
<dependency org="org.objenesis" name="objenesis" rev="1.2" force="true" conf="compile->compile(*),master(*);runtime->runtime(*)"/>
<dependency org="junit" name="junit" rev="4.8.2" force="true" conf="test->runtime(*),master(*)"/>
</dependencies>
</ivy-module>
186 changes: 186 additions & 0 deletions .ivy/cache/com.esotericsoftware.kryo/kryo/ivy-2.20.xml.original
@@ -0,0 +1,186 @@
<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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.esotericsoftware.kryo</groupId>
<artifactId>kryo</artifactId>
<version>2.20</version>
<packaging>jar</packaging>
<name>Kryo</name>
<description>Fast, efficient Java serialization</description>
<url>http://code.google.com/p/kryo/</url>

<licenses>
<license>
<name>New BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>http://kryo.googlecode.com/svn/</url>
<connection>scm:svn:http://kryo.googlecode.com/svn/</connection>
</scm>

<developers>
<developer>
<id>nathan.sweet</id>
<name>Nathan Sweet</name>
<email>nathan.sweet@gmail.com</email>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>com.esotericsoftware.reflectasm</groupId>
<artifactId>reflectasm</artifactId>
<version>1.07</version>
<classifier>shaded</classifier>
</dependency>
<dependency>
<groupId>com.esotericsoftware.minlog</groupId>
<artifactId>minlog</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<!-- Set nonstandard source and test source dirs -->
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>

<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>utf-8</encoding>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- Disable resources (project has none) -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>default-resources</id>
<phase>none</phase>
</execution>
<execution>
<id>default-testResources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<excludes>
<exclude>**/.svn/*</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.7</version>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>shaded</shadedClassifierName>
<artifactSet>
<includes>
<include>com.esotericsoftware.reflectasm:reflectasm:shaded</include>
<include>com.esotericsoftware.minlog:minlog</include>
<include>org.objenesis:objenesis</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.objenesis</pattern>
<shadedPattern>com.esotericsoftware.shaded.org.objenesis</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>requireSnapshot</id>
<!-- This profile is activated by the "-P requireSnapshot" switch to
be able to deploy SNAPSHOTs only (which is not allowed for releases) -->
<build>
<plugins>
<!-- Jenkins should only build -SNAPSHOTs -->
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<evaluateBeanshell>
<condition>"${project.version}".endsWith("-SNAPSHOT")</condition>
<message>Jenkins should only build -SNAPSHOT versions</message>
</evaluateBeanshell>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<repositories>
<repository>
<id>sonatype-releases</id>
<name>sonatype releases repo</name>
<url>https://oss.sonatype.org/content/repositories/releases</url>
</repository>
</repositories>
</project>
15 changes: 15 additions & 0 deletions .ivy/cache/com.esotericsoftware.kryo/kryo/ivydata-2.20.properties
@@ -0,0 +1,15 @@
#ivy cached data file for com.esotericsoftware.kryo#kryo;2.20
artifact.resolver=default
artifact\:ivy\#ivy\#xml\#-215540627.exists=true
artifact\:ivy\#ivy\#xml\#-215540627.is-local=false
artifact\:ivy\#ivy\#xml\#-215540627.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/com/esotericsoftware/kryo/kryo/2.20/kryo-2.20.pom
artifact\:ivy\#ivy\#xml\#-215540627.original=artifact\:kryo\#pom.original\#pom\#1518298707
artifact\:kryo\#jar\#jar\#-134263955.exists=true
artifact\:kryo\#jar\#jar\#-134263955.is-local=false
artifact\:kryo\#jar\#jar\#-134263955.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/com/esotericsoftware/kryo/kryo/2.20/kryo-2.20.jar
artifact\:kryo\#jar\#jar\#-134263955.original=artifact\:kryo\#jar\#jar\#-134263955
artifact\:kryo\#pom.original\#pom\#1518298707.exists=true
artifact\:kryo\#pom.original\#pom\#1518298707.is-local=false
artifact\:kryo\#pom.original\#pom\#1518298707.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/com/esotericsoftware/kryo/kryo/2.20/kryo-2.20.pom
artifact\:kryo\#pom.original\#pom\#1518298707.original=artifact\:kryo\#pom.original\#pom\#1518298707
resolver=liferay-public
Binary file not shown.
33 changes: 33 additions & 0 deletions .ivy/cache/com.esotericsoftware.minlog/minlog/ivy-1.2.xml
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="com.esotericsoftware.minlog"
module="minlog"
revision="1.2"
status="release"
publication="20120531052649"
>
<license name="New BSD License" url="http://www.opensource.org/licenses/bsd-license.php" />
<description homepage="http://code.google.com/p/minlog/">
Minimal overhead Java logging
</description>
<m:properties__project.build.sourceEncoding>UTF-8</m:properties__project.build.sourceEncoding>
<m:maven.plugins>null__maven-resources-plugin__2.5</m:maven.plugins>
</info>
<configurations>
<conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf" extends="runtime,master"/>
<conf name="master" visibility="public" description="contains only the artifact published by this module itself, with no transitive dependencies"/>
<conf name="compile" visibility="public" description="this is the default scope, used if none is specified. Compile dependencies are available in all classpaths."/>
<conf name="provided" visibility="public" description="this is much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive."/>
<conf name="runtime" visibility="public" description="this scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath." extends="compile"/>
<conf name="test" visibility="private" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases." extends="runtime"/>
<conf name="system" visibility="public" description="this scope is similar to provided except that you have to provide the JAR which contains it explicitly. The artifact is always available and is not looked up in a repository."/>
<conf name="sources" visibility="public" description="this configuration contains the source artifact of this module, if any."/>
<conf name="javadoc" visibility="public" description="this configuration contains the javadoc artifact of this module, if any."/>
<conf name="optional" visibility="public" description="contains all optional dependencies"/>
</configurations>
<publications>
<artifact name="minlog" type="jar" ext="jar" conf="master"/>
<artifact name="minlog" type="source" ext="jar" conf="sources" m:classifier="sources"/>
<artifact name="minlog" type="javadoc" ext="jar" conf="javadoc" m:classifier="javadoc"/>
</publications>
</ivy-module>
61 changes: 61 additions & 0 deletions .ivy/cache/com.esotericsoftware.minlog/minlog/ivy-1.2.xml.original
@@ -0,0 +1,61 @@
<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>com.esotericsoftware.minlog</groupId>
<artifactId>minlog</artifactId>
<version>1.2</version>
<packaging>jar</packaging>
<name>MinLog</name>
<description>Minimal overhead Java logging</description>
<url>http://code.google.com/p/minlog/</url>

<licenses>
<license>
<name>New BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>http://minlog.googlecode.com/svn/</url>
<connection>scm:svn:http://minlog.googlecode.com/svn/</connection>
</scm>

<developers>
<developer>
<id>nathan.sweet</id>
<name>Nathan Sweet</name>
<email>nathan.sweet@gmail.com</email>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<!-- Set nonstandard source dir -->
<sourceDirectory>src</sourceDirectory>

<plugins>
<!-- Disable resources (project has none) -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>default-resources</id>
<phase>none</phase>
</execution>
<execution>
<id>default-testResources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
@@ -0,0 +1,15 @@
#ivy cached data file for com.esotericsoftware.minlog#minlog;1.2
artifact.resolver=default
artifact\:ivy\#ivy\#xml\#1506058408.exists=true
artifact\:ivy\#ivy\#xml\#1506058408.is-local=false
artifact\:ivy\#ivy\#xml\#1506058408.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/com/esotericsoftware/minlog/minlog/1.2/minlog-1.2.pom
artifact\:ivy\#ivy\#xml\#1506058408.original=artifact\:minlog\#pom.original\#pom\#1539542203
artifact\:minlog\#jar\#jar\#-113020459.exists=true
artifact\:minlog\#jar\#jar\#-113020459.is-local=false
artifact\:minlog\#jar\#jar\#-113020459.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/com/esotericsoftware/minlog/minlog/1.2/minlog-1.2.jar
artifact\:minlog\#jar\#jar\#-113020459.original=artifact\:minlog\#jar\#jar\#-113020459
artifact\:minlog\#pom.original\#pom\#1539542203.exists=true
artifact\:minlog\#pom.original\#pom\#1539542203.is-local=false
artifact\:minlog\#pom.original\#pom\#1539542203.location=http\://cdn.repository.liferay.com/nexus/content/groups/public/com/esotericsoftware/minlog/minlog/1.2/minlog-1.2.pom
artifact\:minlog\#pom.original\#pom\#1539542203.original=artifact\:minlog\#pom.original\#pom\#1539542203
resolver=liferay-public
Binary file not shown.
37 changes: 37 additions & 0 deletions .ivy/cache/com.esotericsoftware.reflectasm/reflectasm/ivy-1.07.xml
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="com.esotericsoftware.reflectasm"
module="reflectasm"
revision="1.07"
status="release"
publication="20120619012452"
>
<license name="New BSD License" url="http://www.opensource.org/licenses/bsd-license.php" />
<description homepage="http://code.google.com/p/reflectasm/">
High performance Java reflection using code generation
</description>
<m:properties__project.build.sourceEncoding>UTF-8</m:properties__project.build.sourceEncoding>
<m:maven.plugins>null__maven-resources-plugin__2.5|org.apache.maven.plugins__maven-jar-plugin__2.4|org.apache.maven.plugins__maven-shade-plugin__1.7</m:maven.plugins>
</info>
<configurations>
<conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf" extends="runtime,master"/>
<conf name="master" visibility="public" description="contains only the artifact published by this module itself, with no transitive dependencies"/>
<conf name="compile" visibility="public" description="this is the default scope, used if none is specified. Compile dependencies are available in all classpaths."/>
<conf name="provided" visibility="public" description="this is much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive."/>
<conf name="runtime" visibility="public" description="this scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath." extends="compile"/>
<conf name="test" visibility="private" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases." extends="runtime"/>
<conf name="system" visibility="public" description="this scope is similar to provided except that you have to provide the JAR which contains it explicitly. The artifact is always available and is not looked up in a repository."/>
<conf name="sources" visibility="public" description="this configuration contains the source artifact of this module, if any."/>
<conf name="javadoc" visibility="public" description="this configuration contains the javadoc artifact of this module, if any."/>
<conf name="optional" visibility="public" description="contains all optional dependencies"/>
</configurations>
<publications>
<artifact name="reflectasm" type="jar" ext="jar" conf="master"/>
<artifact name="reflectasm" type="source" ext="jar" conf="sources" m:classifier="sources"/>
<artifact name="reflectasm" type="javadoc" ext="jar" conf="javadoc" m:classifier="javadoc"/>
</publications>
<dependencies>
<dependency org="org.ow2.asm" name="asm" rev="4.0" force="true" conf="compile->compile(*),master(*);runtime->runtime(*)"/>
<dependency org="junit" name="junit" rev="4.8.2" force="true" conf="test->runtime(*),master(*)"/>
</dependencies>
</ivy-module>

0 comments on commit b60e3d7

Please sign in to comment.