123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <?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>o2help_sso</artifactId>
- <version>7.3</version>
- </parent>
- <artifactId>x_sso_core_entity</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>net.o2oa</groupId>
- <artifactId>x_base_core_project</artifactId>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>1.69</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpmime</artifactId>
- <version>4.5.13</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>TableBuilder</id>
- <phase>prepare-package</phase>
- <goals>
- <goal>java</goal>
- </goals>
- <configuration>
- <addOutputToClasspath>true</addOutputToClasspath>
- <includePluginDependencies>true</includePluginDependencies>
- <includeProjectDependencies>true</includeProjectDependencies>
- <mainClass>com.x.base.core.project.annotation.TableBuilder</mainClass>
- <arguments>
- <argument>${basedir}</argument>
- <argument>${project.build.sourceDirectory}</argument>
- </arguments>
- </configuration>
- </execution>
- <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>enhanceBuilder</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.EnhanceBuilder</mainClass>
- <arguments>
- <argument>${project.build.directory}</argument>
- <argument>${project.build.outputDirectory}</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>checkCore</id>
- <phase>prepare-package</phase>
- <goals>
- <goal>java</goal>
- </goals>
- <configuration>
- <addOutputToClasspath>true</addOutputToClasspath>
- <includePluginDependencies>true</includePluginDependencies>
- <includeProjectDependencies>true</includeProjectDependencies>
- <mainClass>com.x.base.core.project.build.CheckCore</mainClass>
- </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>
|