12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?xml version="1.0"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>net.o2oa</groupId>
- <artifactId>o2server</artifactId>
- <version>8.3</version>
- </parent>
- <artifactId>x_base_core_project</artifactId>
- <packaging>jar</packaging>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>metaModelBuilder</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>java</goal>
- </goals>
- <configuration>
- <addOutputToClasspath>true</addOutputToClasspath>
- <includePluginDependencies>true</includePluginDependencies>
- <includeProjectDependencies>true</includeProjectDependencies>
- <mainClass>com.x.base.core.entity.tools.MetaModelBuilder
- </mainClass>
- <arguments>
- <argument>${basedir}</argument>
- <argument>${project.build.sourceDirectory}</argument>
- <argument>${project.build.outputDirectory}</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>enhanceBaseBuilder</id>
- <phase>process-classes</phase>
- <goals>
- <goal>java</goal>
- </goals>
- <configuration>
- <addOutputToClasspath>true</addOutputToClasspath>
- <includePluginDependencies>true</includePluginDependencies>
- <includeProjectDependencies>true</includeProjectDependencies>
- <mainClass>com.x.base.core.entity.tools.EnhanceBaseBuilder
- </mainClass>
- <arguments>
- <argument>${project.build.directory}</argument>
- <argument>${project.build.outputDirectory}</argument>
- </arguments>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-jar</id>
- <phase>verify</phase>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>../store/jars</outputDirectory>
- <resources>
- <resource>
- <directory>target</directory>
- <includes>
- <include>${project.artifactId}.jar</include>
- </includes>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <executions>
- <execution>
- <phase>initialize</phase>
- <goals>
- <goal>compile</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|