sunyj 8 年 前
コミット
6c98850c9c

+ 35 - 0
crystal-replace-view/pom.xml

@@ -0,0 +1,35 @@
+<?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>
+    <parent>
+        <artifactId>report-parent</artifactId>
+        <groupId>com.uas.report</groupId>
+        <version>0.0.1</version>
+    </parent>
+    <artifactId>crystal-replace-view</artifactId>
+    <packaging>jar</packaging>
+
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.uas.report</groupId>
+            <artifactId>report-common</artifactId>
+            <version>${report.common.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+</project>

+ 11 - 0
crystal-replace-view/src/main/java/com/uas/report/crystal/Application.java

@@ -0,0 +1,11 @@
+package com.uas.report.crystal;
+
+/**
+ * @author sunyj
+ * @since 2017/12/22 10:42
+ */
+public class Application {
+    public static void main(String[] args){
+//        ReportClientDocument client = new ReportClientDocument();
+    }
+}

+ 2 - 1
pom.xml

@@ -12,9 +12,10 @@
     <version>0.0.1</version>
 
     <modules>
-        <module>report</module>
         <module>report-common</module>
+        <module>report</module>
         <module>crystal2jasper</module>
+        <module>crystal-replace-view</module>
     </modules>
 
     <properties>