1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/iJovi-vonce-sqlbean-android

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
pom.xml 5.7 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Jovi Отправлено 08.08.2024 18:08 7e0fd9e
<?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>
<name>vonce-sqlbean-android</name>
<description>This is a tool that uses Java object-oriented thinking to write and generate Sql statements, and on this basis, it implements lightweight plug-in support for Android. A large number of commonly used Sql execution methods are built into the plug-in, the purpose is to improve development efficiency, reduce a large number of Sql statement writing, and let developers focus more on writing business code.
</description>
<url>www.vonce.cn</url>
<licenses>
<license>
<name>The MIT License</name>
<url>http://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<name>jovilam</name>
<email>imjovi@qq.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:Jovilam77/vonce-sqlbean-android.git</connection>
<developerConnection>scm:git:git@github.com:Jovilam77/vonce-sqlbean-android.git</developerConnection>
<url>git@github.com:Jovilam77/vonce-sqlbean-android.git</url>
</scm>
<build>
<plugins>
<!--编译插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<compilerArgument>
-proc:none
</compilerArgument>
<source>8</source>
<target>8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!--生产源码文件插件-->
<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>
<!--生产javadoc插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<encoding>UTF-8</encoding>
<aggregate>true</aggregate>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!--gpg加密插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>oss</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<!--oss需要对应到settings.xml下的service的id-->
<id>oss</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<artifactId>vonce-sqlbean-android</artifactId>
<groupId>cn.vonce</groupId>
<version>1.2.0-beta19</version>
<packaging>jar</packaging>
<!-- 版本信息 -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<vonce.sqlbean.core.version>1.2.0-android-beta3</vonce.sqlbean.core.version>
</properties>
<dependencies>
<!-- sqlbean core -->
<dependency>
<groupId>cn.vonce</groupId>
<artifactId>vonce-sqlbean-core</artifactId>
<version>${vonce.sqlbean.core.version}</version>
</dependency>
<dependency>
<groupId>com.android.framework</groupId>
<artifactId>android</artifactId>
<version>26</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/iJovi-vonce-sqlbean-android.git
git@api.gitlife.ru:oschina-mirror/iJovi-vonce-sqlbean-android.git
oschina-mirror
iJovi-vonce-sqlbean-android
iJovi-vonce-sqlbean-android
master