SWBXMLRPCCommon
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.semanticwb</groupId> <artifactId>SWBXMLRPCCommon</artifactId> <version>5.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>org.semanticwb</groupId> <artifactId>SWBXMLRPCCommon</artifactId> <version>5.0</version> <packaging>jar</packaging> <name>SWBXMLRPCCommon</name> <description>Common utilities and classes for SemanticWebBuilder XMLRPC clients and servers</description> <url>http://www.semanticwebbuilder.org.mx/</url> <organization> <name>INFOTEC - Centro de Investigacion e Innovacion en Tecnologias de la Informacion y Comunicacion</name> <url>https://www.infotec.mx/</url> </organization> <licenses> <license> <name>L/GPL; open source. LICENCIA ABIERTA AL PÚBLICO QUE OTORGA EL FIDEICOMISO PÚBLICO FONDO DE INFORMACIÓN Y DOCUMENTACIÓN PARA LA INDUSTRIA INFOTEC, PARA LA UTILIZACIÓN DEL SOFTWARE SEMANTICWEBBUILDER</name> <url>http://www.semanticwebbuilder.org.mx/es_mx/swb/SWB_Portal_L</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <organization>INFOTEC</organization> <organizationUrl>https://www.infotec.mx/</organizationUrl> </developer> </developers> <scm> <url>scm:git:https://github.com/SemanticWebBuilder/SWBXMLRPCCommon</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <failOnError>false</failOnError> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <configuration> <failOnError>false</failOnError> <attach>true</attach> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>jdom</groupId> <artifactId>jdom</artifactId> <version>1.0</version> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> </project>