notbed
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.napp-com</groupId> <artifactId>notbed</artifactId> <version>1.1.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2013 Alexandru Bledea Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License 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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.github.napp-com</groupId> <artifactId>notbed</artifactId> <version>1.1.8</version> <packaging>pom</packaging> <name>notbed</name> <description> Utilities and database access classes for small projects </description> <url>https://github.com/napp-com/notbed</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/napp-com/notbed.git</connection> <developerConnection>scm:git:https://github.com/napp-com/notbed.git</developerConnection> <url>https://github.com/napp-com/notbed.git</url> <tag>notbed-1.1.8</tag> </scm> <developers> <developer> <id>apixandru</id> <name>Alexandru Bledea</name> <email>alexandrubledea@gmail.com</email> </developer> </developers> <properties> <compileSource>1.6</compileSource> <compileTarget>1.6</compileTarget> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <build> <resources> <resource> <filtering>false</filtering> <directory>src/main/resources</directory> </resource> <resource> <filtering>false</filtering> <directory>src/main/java</directory> <includes> <include>**</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.1</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4.2</version> </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> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.1</version> <configuration> <showDeprecation>false</showDeprecation> <showWarnings>false</showWarnings> <source>${compileSource}</source> <target>${compileTarget}</target> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> <inherited>true</inherited> <executions> <execution> <id>package-test-jar</id> <phase>package</phase> <goals> <goal>test-jar</goal> </goals> </execution> </executions> <configuration> <archive> <manifest> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <inherited>true</inherited> <executions> <execution> <id>package-jars</id> <phase>package</phase> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> <configuration> <includePom>true</includePom> </configuration> </execution> </executions> <configuration> <includePom>true</includePom> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <inherited>true</inherited> <executions> <execution> <id>package-jars</id> <phase>package</phase> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> <configuration> <includePom>true</includePom> </configuration> </execution> </executions> <configuration> <debug>true</debug> <minmemory>128m</minmemory> <maxmemory>1024m</maxmemory> <quiet>true</quiet> <doctitle>${project.name} ${project.version}</doctitle> <windowtitle>${project.name} ${project.version}</windowtitle> <testDoctitle>${project.name} ${project.version} (TEST API)</testDoctitle> <testWindowtitle>${project.name} ${project.version} (TEST API)</testWindowtitle> <splitindex>true</splitindex> <encoding>${project.build.sourceEncoding}</encoding> <links> <link>http://java.sun.com/j2se/1.6.0/docs/api</link> <link>http://java.sun.com/j2se/1.5.0/docs/api</link> <link>http://java.sun.com/j2se/1.4.2/docs/api</link> <link>http://java.sun.com/j2ee/1.4/docs/api</link> </links> <linksource>true</linksource> <detectOfflineLinks>false</detectOfflineLinks> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.5.1</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> <autoDropAfterRelease>true</autoDropAfterRelease> </configuration> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <!-- Common Public License 1.0 --> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <modules> <module>notbed-util</module> <module>notbed-db</module> </modules> <profiles> <profile> <id>m2e</id> <activation> <property> <name>m2e.version</name> </property> </activation> <build> <directory>target-ide</directory> </build> </profile> </profiles> </project>