|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 |
| - <modelVersion>4.0.0</modelVersion> |
4 |
| - |
5 |
| - <parent> |
6 |
| - <groupId>org.mybatis.generator</groupId> |
7 |
| - <artifactId>mybatis-generator</artifactId> |
8 |
| - <version>1.3.0-SNAPSHOT</version> |
9 |
| - </parent> |
10 |
| - |
11 |
| - <artifactId>mybatis-generator-core</artifactId> |
12 |
| - <packaging>jar</packaging> |
13 |
| - <name>MyBatis Generator Core</name> |
14 |
| - |
15 |
| - <build> |
16 |
| - <plugins> |
17 |
| - <plugin> |
18 |
| - <groupId>org.apache.maven.plugins</groupId> |
19 |
| - <artifactId>maven-jar-plugin</artifactId> |
20 |
| - <configuration> |
21 |
| - <archive> |
22 |
| - <manifest> |
23 |
| - <mainClass>org.mybatis.generator.api.ShellRunner</mainClass> |
24 |
| - </manifest> |
25 |
| - </archive> |
26 |
| - </configuration> |
27 |
| - </plugin> |
28 |
| - <plugin> |
29 |
| - <groupId>org.apache.maven.plugins</groupId> |
30 |
| - <artifactId>maven-assembly-plugin</artifactId> |
31 |
| - <executions> |
32 |
| - <execution> |
33 |
| - <goals> |
34 |
| - <goal>assembly</goal> |
35 |
| - </goals> |
36 |
| - <phase>package</phase> |
37 |
| - <configuration> |
38 |
| - <descriptors> |
39 |
| - <descriptor>${basedir}/src/main/assembly/src.xml</descriptor> |
40 |
| - </descriptors> |
41 |
| - </configuration> |
42 |
| - </execution> |
43 |
| - </executions> |
44 |
| - </plugin> |
45 |
| - <plugin> |
46 |
| - <groupId>org.apache.maven.plugins</groupId> |
47 |
| - <artifactId>maven-release-plugin</artifactId> |
48 |
| - <configuration> |
49 |
| - <arguments>-Psonatype-oss-release,bundle,gupload</arguments> |
50 |
| - </configuration> |
51 |
| - </plugin> |
52 |
| - </plugins> |
53 |
| - </build> |
54 |
| - |
55 |
| - <dependencies> |
56 |
| - <dependency> |
57 |
| - <groupId>log4j</groupId> |
58 |
| - <artifactId>log4j</artifactId> |
59 |
| - <version>1.2.13</version> |
60 |
| - <scope>provided</scope> |
61 |
| - </dependency> |
62 |
| - <dependency> |
63 |
| - <groupId>org.apache.ant</groupId> |
64 |
| - <artifactId>ant</artifactId> |
65 |
| - <version>1.7.0</version> |
66 |
| - <scope>provided</scope> |
67 |
| - </dependency> |
68 |
| - <dependency> |
69 |
| - <groupId>junit</groupId> |
70 |
| - <artifactId>junit</artifactId> |
71 |
| - <version>4.6</version> |
72 |
| - <scope>test</scope> |
73 |
| - </dependency> |
74 |
| - <dependency> |
75 |
| - <groupId>org.hsqldb</groupId> |
76 |
| - <artifactId>hsqldb</artifactId> |
77 |
| - <version>1.8.0.10</version> |
78 |
| - <scope>test</scope> |
79 |
| - </dependency> |
80 |
| - </dependencies> |
81 |
| - |
82 |
| - <scm> |
83 |
| - <url>scm:svn:https://mybatis.googlecode.com/svn/sub-projects/generator/trunk/core/mybatis-generator-core</url> |
84 |
| - <connection>scm:svn:https://mybatis.googlecode.com/svn/sub-projects/generator/trunk/core/mybatis-generator-core</connection> |
85 |
| - <developerConnection>scm:svn:https://mybatis.googlecode.com/svn/sub-projects/generator/trunk/core/mybatis-generator-core</developerConnection> |
86 |
| - </scm> |
87 |
| -</project> |
| 1 | +<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/maven-v4_0_0.xsd"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + |
| 4 | + <parent> |
| 5 | + <groupId>org.mybatis.generator</groupId> |
| 6 | + <artifactId>mybatis-generator</artifactId> |
| 7 | + <version>1.3.0</version> |
| 8 | + </parent> |
| 9 | + |
| 10 | + <artifactId>mybatis-generator-core</artifactId> |
| 11 | + <packaging>jar</packaging> |
| 12 | + <name>MyBatis Generator Core</name> |
| 13 | + |
| 14 | + <build> |
| 15 | + <plugins> |
| 16 | + <plugin> |
| 17 | + <groupId>org.apache.maven.plugins</groupId> |
| 18 | + <artifactId>maven-jar-plugin</artifactId> |
| 19 | + <configuration> |
| 20 | + <archive> |
| 21 | + <manifest> |
| 22 | + <mainClass>org.mybatis.generator.api.ShellRunner</mainClass> |
| 23 | + </manifest> |
| 24 | + </archive> |
| 25 | + </configuration> |
| 26 | + </plugin> |
| 27 | + <plugin> |
| 28 | + <groupId>org.apache.maven.plugins</groupId> |
| 29 | + <artifactId>maven-assembly-plugin</artifactId> |
| 30 | + <executions> |
| 31 | + <execution> |
| 32 | + <goals> |
| 33 | + <goal>assembly</goal> |
| 34 | + </goals> |
| 35 | + <phase>package</phase> |
| 36 | + <configuration> |
| 37 | + <descriptors> |
| 38 | + <descriptor>${basedir}/src/main/assembly/src.xml</descriptor> |
| 39 | + </descriptors> |
| 40 | + </configuration> |
| 41 | + </execution> |
| 42 | + </executions> |
| 43 | + </plugin> |
| 44 | + <plugin> |
| 45 | + <groupId>org.apache.maven.plugins</groupId> |
| 46 | + <artifactId>maven-release-plugin</artifactId> |
| 47 | + <configuration> |
| 48 | + <arguments>-Psonatype-oss-release,bundle,gupload</arguments> |
| 49 | + </configuration> |
| 50 | + </plugin> |
| 51 | + </plugins> |
| 52 | + </build> |
| 53 | + |
| 54 | + <dependencies> |
| 55 | + <dependency> |
| 56 | + <groupId>log4j</groupId> |
| 57 | + <artifactId>log4j</artifactId> |
| 58 | + <version>1.2.13</version> |
| 59 | + <scope>provided</scope> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.apache.ant</groupId> |
| 63 | + <artifactId>ant</artifactId> |
| 64 | + <version>1.7.0</version> |
| 65 | + <scope>provided</scope> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>junit</groupId> |
| 69 | + <artifactId>junit</artifactId> |
| 70 | + <version>4.6</version> |
| 71 | + <scope>test</scope> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>org.hsqldb</groupId> |
| 75 | + <artifactId>hsqldb</artifactId> |
| 76 | + <version>1.8.0.10</version> |
| 77 | + <scope>test</scope> |
| 78 | + </dependency> |
| 79 | + </dependencies> |
| 80 | + |
| 81 | + <scm> |
| 82 | + <url>scm:svn:https://mybatis.googlecode.com/svn/sub-projects/generator/tags/mybatis-generator-1.3.0/mybatis-generator-core</url> |
| 83 | + <connection>scm:svn:https://mybatis.googlecode.com/svn/sub-projects/generator/tags/mybatis-generator-1.3.0/mybatis-generator-core</connection> |
| 84 | + <developerConnection>scm:svn:https://mybatis.googlecode.com/svn/sub-projects/generator/tags/mybatis-generator-1.3.0/mybatis-generator-core</developerConnection> |
| 85 | + </scm> |
| 86 | +</project> |
0 commit comments