textprocessor-dao
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.goikosoft.textprocessor</groupId>
<artifactId>textprocessor-dao</artifactId>
<version>0.0.1</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.goikosoft.textprocessor</groupId>
<artifactId>textprocessor-dao</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>
<name>textprocessor-dao</name>
<description>DAO for text processor. Other package DAOs can import this without importing the whole text-processor</description>
<url>https://github.com/dgoiko/text-processor</url>
<developers>
<developer>
<name>Dario Goikoetxea</name>
</developer>
</developers>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<scm.url>file:///D:\Proyectos\text-processor</scm.url>
<!-- <scm.url>file:///D:\Proyectos\boes\git\crawlers</scm.url> -->
</properties>
<scm>
<connection>scm:git:${scm.url}</connection>
<developerConnection>scm:git:${scm.url}</developerConnection>
<url>${scm.url}</url>
<tag>textprocessor-dao-0.0.1</tag>
</scm>
<dependencies>
</dependencies>
<distributionManagement>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>central-snapshots</id>
<name>Central Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<!-- download source code in Eclipse, best practice -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>false</downloadJavadocs>
</configuration>
</plugin>
<!-- Set a JDK compiler level -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Make this jar executable -->
<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId>
<configuration> -->
<!-- DO NOT include log4j.properties file in your Jar -->
<!-- <excludes> <exclude>**/log4j.properties</exclude> </excludes> <archive>
<manifest> -->
<!-- Jar file entry point -->
<!-- <mainClass>com.mkyong.core.utils.App</mainClass> </manifest> </archive>
</configuration> </plugin> -->
<!-- Copy project dependency -->
<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId>
<version>2.5.1</version> <executions> <execution> <id>copy-dependencies</id>
<phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> -->
<!-- exclude junit, we need runtime dependency only -->
<!-- <includeScope>runtime</includeScope> <outputDirectory>${project.build.directory}/dependency-jars/</outputDirectory>
</configuration> </execution> </executions> </plugin> -->
</plugins>
</build>
</project>