beigesoft-orm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.beigesoft</groupId> <artifactId>beigesoft-orm</artifactId> <version>1.1.8</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>org.beigesoft</groupId> <version>1.1.8</version> <artifactId>beigesoft-orm</artifactId> <name>Beigesoft™ ORM library.</name> <inceptionYear>2016</inceptionYear> <description>This is simple lightweigt multiplatform (JDBC/Android) ORM library. It supports Postgresql, MySql, H2 and SQlite. It consist of ORM logic except platform dependent database access logic - e.g. JDBC or Android. It's configured with Beige-Settings (standard Java Properties XML files).</description> <url>https://sites.google.com/site/beigesoftware</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.7</java.version> </properties> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jarsigner-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>signing</id> <goals> <goal>sign</goal> </goals> <phase>verify</phase> <inherited>true</inherited> <configuration> <archiveDirectory /> <includes> <include>target${file.separator}*.jar</include> </includes> <storepass>${signpass}</storepass> <keypass>${signpass}</keypass> <alias>${signalias}</alias> </configuration> </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>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpgkeyname}</keyname> <passphraseServerId>${gpgkeyname}</passphraseServerId> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>check</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.17</version> <executions> <execution> <id>checkstyle</id> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation> <excludes>**/apache/**</excludes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.3</version> <configuration> <excludeFilterFile>findbug-exclude.xml</excludeFilterFile> </configuration> <executions> <execution> <id>findbugs</id> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.6</version> <configuration> <printFailingErrors>true</printFailingErrors> <excludes> <exclude>**/apache/**</exclude> </excludes> </configuration> <executions> <execution> <id>pmd</id> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.beigesoft</groupId> <artifactId>beigesoft-settings</artifactId> <version>1.1.8</version> </dependency> <dependency> <groupId>org.beigesoft</groupId> <artifactId>beigesoft-bcommon</artifactId> <version>1.1.8</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> <configuration> <useSystemClassLoader>false</useSystemClassLoader> <useFile>false</useFile> <trimStackTrace>false</trimStackTrace> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <compilerArgs> <!--<arg>-verbose</arg>--> <arg>-Xlint:all,-options,-path</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.0.0</version> <inherited>false</inherited> <configuration> <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <developers> <developer><name>Yury Demidenko</name></developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <licenses> <license> <name>GNU General Public License version 2</name> <url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/demidenko05/beigesoft-orm.git</url> <connection>scm:git:git@github.com:demidenko05/beigesoft-orm.git</connection> <developerConnection>scm:git:git@github.com:demidenko05/beigesoft-orm.git</developerConnection> <tag>beigesoft-orm-1.1.8</tag> </scm> </project>