<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>
  <parent>
    <groupId>com.jxdinfo.idp</groupId>
    <artifactId>idp-scene</artifactId>
    <version>2.2.6.fix1</version>
  </parent>

  <groupId>com.jxdinfo.idp</groupId>
  <artifactId>idp-scene-api</artifactId>
  <version>2.2.6.fix1</version>

  <name>idp-scene-api</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
      <dependency>
          <groupId>org.projectlombok</groupId>
          <artifactId>lombok</artifactId>
          <version>1.18.32</version>
          <scope>compile</scope>
      </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-web</artifactId>
      <version>5.2.12.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.jxdinfo.idp</groupId>
      <artifactId>idp-common</artifactId>
      <version>2.2.6.fix1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.jxdinfo.idp</groupId>
      <artifactId>idp-dm-api</artifactId>
      <version>2.2.6.fix1</version>
      <scope>compile</scope>
    </dependency>
      <dependency>
          <groupId>com.jxdinfo.idp</groupId>
          <artifactId>idp-rule-api</artifactId>
          <version>2.2.6.fix1</version>
          <scope>compile</scope>
      </dependency>
    <dependency>
      <groupId>com.jxdinfo.idp</groupId>
      <artifactId>idp-extract-server</artifactId>
      <version>2.2.6.fix1</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  <build>
    <finalName>${project.artifactId}-${project.version}</finalName>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <!--<source>${java.version}</source>-->
          <!--<target>${java.version}</target>-->
          <encoding>UTF-8</encoding>
          <skip>true</skip>
          <compilerArgs>
            <arg>-parameters</arg>
          </compilerArgs>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>obfuscator-maven-plugin</artifactId>
        <version>8.0.0</version>
        <executions>
          <execution>
            <id>run-confusion</id>
            <phase>package</phase>
            <goals>
              <goal>obfuscator</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>8</source>
          <target>8</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
