sol-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.solacesystems</groupId> <artifactId>sol-common</artifactId> <version>10.25.0</version> </dependency>
<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>com.solacesystems</groupId> <artifactId>solsuite</artifactId> <version>10.25.0</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>com.solacesystems</groupId> <artifactId>sol-common</artifactId> <packaging>jar</packaging> <name>Utilities for Solace Messaging API for Java</name> <description>Utilities for Solace Messaging API for Java</description> <url>https://docs.solace.com/Solace-PubSub-Messaging-APIs/Java-API/java-api-home.htm</url> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>${basedir}/src/main/resources</directory> </resource> <resource> <directory>${basedir}/..</directory> <includes> <include>README.txt</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <includes> <include>README.txt</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestSections> <manifestSection> <name>com/solacesystems/common</name> <manifestEntries> <Specification-Title>Solace Corporation Common Messaging</Specification-Title> <Specification-Version>${project.version}</Specification-Version> <Specification-Vendor>Solace Corporation</Specification-Vendor> <Implementation-Title>com.solacesystems.common</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> <Implementation-Vendor>Solace Corporation</Implementation-Vendor> </manifestEntries> </manifestSection> </manifestSections> </archive> <excludes> <exclude>**</exclude> </excludes> </configuration> <executions> <execution> <id>empty-javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${basedir}/javadoc</classesDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>