You can download chemistry-opencmis-client-impl-0.12.0.jar in this page.
Apache License
chemistry-opencmis-client-impl-0.12.0.jar file has the following types.
META-INF/DEPENDENCIES META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/maven/org.apache.chemistry.opencmis/chemistry-opencmis-client-impl/pom.properties META-INF/maven/org.apache.chemistry.opencmis/chemistry-opencmis-client-impl/pom.xml org.apache.chemistry.opencmis.client.osgi.Activator.class org.apache.chemistry.opencmis.client.runtime.AbstractCmisObject.class org.apache.chemistry.opencmis.client.runtime.AbstractFilableCmisObject.class org.apache.chemistry.opencmis.client.runtime.ChangeEventImpl.class org.apache.chemistry.opencmis.client.runtime.ChangeEventsImpl.class org.apache.chemistry.opencmis.client.runtime.CmisBindingHelper.class org.apache.chemistry.opencmis.client.runtime.DocumentImpl.class org.apache.chemistry.opencmis.client.runtime.FolderImpl.class org.apache.chemistry.opencmis.client.runtime.ItemImpl.class org.apache.chemistry.opencmis.client.runtime.ObjectIdImpl.class org.apache.chemistry.opencmis.client.runtime.OperationContextImpl.class org.apache.chemistry.opencmis.client.runtime.PolicyImpl.class org.apache.chemistry.opencmis.client.runtime.PropertyImpl.class org.apache.chemistry.opencmis.client.runtime.QueryResultImpl.class org.apache.chemistry.opencmis.client.runtime.QueryStatementImpl.class org.apache.chemistry.opencmis.client.runtime.RelationshipImpl.class org.apache.chemistry.opencmis.client.runtime.RenditionImpl.class org.apache.chemistry.opencmis.client.runtime.SessionFactoryImpl.class org.apache.chemistry.opencmis.client.runtime.SessionImpl.class org.apache.chemistry.opencmis.client.runtime.cache.Cache.class org.apache.chemistry.opencmis.client.runtime.cache.CacheImpl.class org.apache.chemistry.opencmis.client.runtime.cache.NoCacheImpl.class org.apache.chemistry.opencmis.client.runtime.objecttype.DocumentTypeImpl.class org.apache.chemistry.opencmis.client.runtime.objecttype.FolderTypeImpl.class org.apache.chemistry.opencmis.client.runtime.objecttype.ItemTypeImpl.class org.apache.chemistry.opencmis.client.runtime.objecttype.ObjectTypeHelper.class org.apache.chemistry.opencmis.client.runtime.objecttype.PolicyTypeImpl.class org.apache.chemistry.opencmis.client.runtime.objecttype.RelationshipTypeImpl.class org.apache.chemistry.opencmis.client.runtime.objecttype.SecondaryTypeImpl.class org.apache.chemistry.opencmis.client.runtime.repository.ObjectFactoryImpl.class org.apache.chemistry.opencmis.client.runtime.repository.RepositoryImpl.class org.apache.chemistry.opencmis.client.runtime.util.AbstractIterable.class org.apache.chemistry.opencmis.client.runtime.util.AbstractIterator.class org.apache.chemistry.opencmis.client.runtime.util.AbstractPageFetcher.class org.apache.chemistry.opencmis.client.runtime.util.CollectionIterable.class org.apache.chemistry.opencmis.client.runtime.util.CollectionIterator.class org.apache.chemistry.opencmis.client.runtime.util.CollectionPageIterable.class org.apache.chemistry.opencmis.client.runtime.util.CollectionPageIterator.class org.apache.chemistry.opencmis.client.runtime.util.EmptyItemIterable.class org.apache.chemistry.opencmis.client.runtime.util.TreeImpl.class org.apache.chemistry.opencmis.client.util.FileUtils.class org.apache.chemistry.opencmis.client.util.OperationContextUtils.class org.apache.chemistry.opencmis.client.util.TypeUtils.class
chemistry-opencmis-client-impl-0.12.0.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.chemistry.opencmis</groupId> <artifactId>chemistry-opencmis</artifactId> <version>0.12.0</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>chemistry-opencmis-client-impl</artifactId> <name>OpenCMIS Client Implementation</name> <packaging>jar</packaging> <properties> <parentBasedir>../../</parentBasedir> </properties> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${felix.plugin.version}</version> <extensions>true</extensions> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <Export-Package /> <Bundle-DocURL>${project.url}</Bundle-DocURL> <Bundle-Activator>org.apache.chemistry.opencmis.client.osgi.Activator</Bundle-Activator> </instructions> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <executions> <execution> <id>pack-client-with-deps</id> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <attach>true</attach> <descriptors> <descriptor>src/main/assembly/client-with-dependencies-assembly.xml</descriptor> <descriptor>src/main/assembly/client-with-ri-dependencies-assembly.xml</descriptor> <descriptor>src/main/assembly/client-with-cxf-dependencies-assembly.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>chemistry-opencmis-client-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>chemistry-opencmis-commons-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>chemistry-opencmis-commons-impl</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>chemistry-opencmis-client-bindings</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>woodstox-core-asl</artifactId> <version>${woodstox.version}</version> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>${osgi.version}</version> <scope>provided</scope> </dependency> <!-- Sun RI --> <dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-rt</artifactId> <version>${jaxws-rt.version}</version> <scope>provided</scope> </dependency> <!-- CXF --> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxws</artifactId> <version>${cxf.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-transports-http</artifactId> <version>${cxf.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-ws-policy</artifactId> <version>${cxf.version}</version> <scope>provided</scope> </dependency> <!-- Test --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>${log4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <!-- call mvn test -Dorg.apache.chemistry.opencmis.client.runtime.suite.config.path=myServer.properties to run test using profile parameters --> <activation> <property> <name>org.apache.chemistry.opencmis.client.runtime.test.config.path</name> </property> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Dorg.apache.chemistry.opencmis.client.runtime.test.config.path=${org.apache.chemistry.opencmis.client.runtime.test.config.path}</argLine> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> <!-- Extending the default -Papache-release profile used *only* during releases --> <profile> <id>apache-release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <id>pack-client-with-deps</id> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <attach>true</attach> <descriptors> <descriptor> src/main/assembly/client-with-dependencies-assembly.xml </descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>org.apache.chemistry.opencmis</groupId> <artifactId>chemistry-opencmis-client-impl</artifactId> <version>0.12.0</version> </dependency>
If you think the following chemistry-opencmis-client-impl-0.12.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download chemistry-opencmis-client-impl-0.12.0.jar file