You can download cs-commons-0.0.5.jar in this page.
The Apache License, Version 2.0
cs-commons-0.0.5.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/io.cloudslang.content/cs-commons/pom.properties META-INF/maven/io.cloudslang.content/cs-commons/pom.xml io.cloudslang.content.constants.BooleanValues.class io.cloudslang.content.constants.ExceptionValues.class io.cloudslang.content.constants.InputNames.class io.cloudslang.content.constants.OtherValues.class io.cloudslang.content.constants.OutputNames.class io.cloudslang.content.constants.ResponseNames.class io.cloudslang.content.constants.ReturnCodes.class io.cloudslang.content.utils.BooleanUtilities.class io.cloudslang.content.utils.CollectionUtilities.class io.cloudslang.content.utils.NumberUtilities.class io.cloudslang.content.utils.OtherUtilities.class io.cloudslang.content.utils.OutputUtilities.class io.cloudslang.content.utils.StringEscapeUtilities.class io.cloudslang.content.utils.StringUtilities.class
cs-commons-0.0.5.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- * (c) Copyright 2017 EntIT Software LLC, a Micro Focus company, L.P. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Apache License v2.0 which accompany this distribution. * * The Apache License is available 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.cloudslang.content</groupId> <artifactId>cs-commons</artifactId> <version>0.0.5</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>Utils for java cloudSlang modules.</description> <url>https://github.com/CloudSlang/cs-actions</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:https://CloudSlang/cs-actions.git</connection> <developerConnection>scm:git:git@github.com:CloudSlang/cs-actions.git</developerConnection> <url>https://github.com/CloudSlang/cs-actions.git</url> <tag>cs-commons-0.0.5</tag> </scm> <developers> <developer> <name>Victor Ursan</name> <email>victor.ursan@hpe.com</email> <organization>Hewlett Packard Enterprise</organization> <organizationUrl>http://www8.hp.com/us/en/software/enterprise-software.html</organizationUrl> </developer> </developers> <distributionManagement> <repository> <id>ossrh</id> <name>Maven Central staging repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <name>Maven Central snapshots repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <properties> <!--Maven versions--> <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version> <maven-release-plugin.version>2.5.2</maven-release-plugin.version> <maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version> <license-maven-plugin.version>3.0</license-maven-plugin.version> <maven-source-plugin.version>3.0.1</maven-source-plugin.version> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <!--Dependencies versions--> <junit.version>4.12</junit.version> <jetbrains-annotations.version>15.0</jetbrains-annotations.version> <apache-commons-lang3.version>3.4</apache-commons-lang3.version> <!--Misc properties--> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> <maven.sources.skip>true</maven.sources.skip> <custom.nexus>overwritten_by_ci</custom.nexus> </properties> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${apache-commons-lang3.version}</version> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>${jetbrains-annotations.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>3.0</version> <configuration> <header>${project.basedir}/license.template</header> <headerDefinitions> <headerDefinition>${project.basedir}/header-definitions.xml</headerDefinition> </headerDefinitions> <includes> <include>**/*.java</include> <include>pom.xml</include> </includes> <!--Pass arguments using ${var} syntax in license.template file--> <properties> <copyright.year>2017</copyright.year> </properties> <!--Custom mapping for java extensions--> <useDefaultMapping>false</useDefaultMapping> <mapping> <java>cs-actions-java-header</java> <xml>XML_STYLE</xml> </mapping> </configuration> <executions> <execution> <phase>process-resources</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>gpg</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>deploy-internal</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> <executions> <execution> <id>custom-deployment-to-nexus</id> <goals> <goal>deploy</goal> </goals> <phase>deploy</phase> <configuration> <altDeploymentRepository>${custom.nexus}</altDeploymentRepository> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>io.cloudslang.content</groupId> <artifactId>cs-commons</artifactId> <version>0.0.5</version> </dependency>
If you think the following cs-commons-0.0.5.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download cs-commons-0.0.5.jar file