force-wsc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.force.api</groupId> <artifactId>force-wsc</artifactId> <version>64.0.3</version> </dependency>
<?xml version="1.0"?> <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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.force.api</groupId> <artifactId>force-wsc</artifactId> <packaging>jar</packaging> <version>64.0.3</version> <name>force-wsc</name> <description>Force.com Web Service Connector</description> <url>http://www.force.com</url> <licenses> <license> <name>BSD License (FreeBSD)</name> <url>LICENSE.md</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <scm> <connection>scm:git:git://github.com/forcedotcom/wsc.git</connection> <developerConnection>scm:git:git://github.com/forcedotcom/wsc.git</developerConnection> <url>git@github.com/forcedotcom/wsc</url> </scm> <developers> <!-- see mailing list --> </developers> <mailingLists> <mailingList> <name>Database.com SDK for Java Issues</name> <archive>https://github.com/forcedotcom/java-sdk/issues?state=closed</archive> <subscribe>https://github.com/forcedotcom/java-sdk/toggle_watch</subscribe> <unsubscribe>https://github.com/forcedotcom/java-sdk/toggle_watch</unsubscribe> <post>https://github.com/forcedotcom/java-sdk/issues/new</post> </mailingList> </mailingLists> <dependencies> <dependency> <groupId>org.antlr</groupId> <artifactId>ST4</artifactId> <version>4.3</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.appengine</groupId> <artifactId>appengine-api-1.0-sdk</artifactId> <version>1.7.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.9.4</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.3.2</version> </dependency> </dependencies> <build> <resources> <resource> <filtering>false</filtering> <directory>${basedir}</directory> <includes> <include>LICENSE.md</include> </includes> </resource> <resource> <filtering>false</filtering> <directory>${basedir}/src/main/java</directory> <includes> <include>**</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations> <!-- repackage antlr to prevent namespace collision on classpath in core app --> <relocation> <pattern>org.antlr</pattern> <shadedPattern>com.sforce.ws.shade.org.antlr</shadedPattern> </relocation> <relocation> <pattern>antlr</pattern> <shadedPattern>com.sforce.ws.shade.antlr</shadedPattern> </relocation> <!-- repackage string template to prevent namespace collision on classpath in core app --> <relocation> <pattern>org.stringtemplate</pattern> <shadedPattern>com.sforce.ws.shade.org.stringtemplate</shadedPattern> </relocation> <!-- jackson is also in core, prevent namespace collission --> <relocation> <pattern>com.fasterxml.jackson</pattern> <shadedPattern>com.sforce.ws.shade.com.fasterxml.jackson</shadedPattern> </relocation> <relocation> <pattern>org.apache.commons</pattern> <shadedPattern>com.sforce.ws.shade.org.apache.commons</shadedPattern> </relocation> </relocations> <createDependencyReducedPom>false</createDependencyReducedPom> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>uber</shadedClassifierName> <filters> <filter> <artifact>com.fasterxml.jackson.core:jackson-core</artifact> <excludes> <exclude>META-INF/versions/22/**</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <includes> <include>**</include> </includes> <archive> <manifest> <mainClass>com.sforce.ws.tools.wsdlc</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-source</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <source>1.8</source> <target>1.8</target> <doclint>none</doclint> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> <executions> <execution> <id>attach-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>package</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.10.b1</version> <configuration> <header>license.txt</header> <excludes> <exclude>src/test/resources/codegeneration/*.java</exclude> </excludes> <includes> <include>**/*.java</include> </includes> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <forkMode>always</forkMode> <useManifestOnlyJar>false</useManifestOnlyJar> </configuration> </plugin> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>8.4.1</version> <configuration> <failBuildOnCVSS>8</failBuildOnCVSS> <skipProvidedScope>true</skipProvidedScope> <skipRuntimeScope>true</skipRuntimeScope> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>package</phase> </execution> </executions> </plugin> </plugins> </build> </project>