10 Star 22 Fork 10

monkeyk7 / jcalendarchooser

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 1.74 KB
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
lishengzhao 提交于 2015-01-06 15:48 . Import codes from old backup file
<?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>mkk.com</groupId>
<artifactId>jcalendarchooser</artifactId>
<version>1.0</version>
<name>${project.artifactId}</name>
<packaging>jar</packaging>
<description>Java Swing Calendar chooser</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<developers>
<developer>
<name>shengzhao</name>
<email>monkeyking1987@126.com</email>
</developer>
</developers>
<build>
<finalName>jcalendarchooser</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<encoding>utf-8</encoding>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>code/src</directory>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>*.properties</exclude>
</excludes>
</resource>
</resources>
</build>
<dependencies>
</dependencies>
</project>
Java
1
https://gitee.com/mkk/jcalendarchooser.git
git@gitee.com:mkk/jcalendarchooser.git
mkk
jcalendarchooser
jcalendarchooser
master

搜索帮助