ทดลองสร้างด้วย MAVEN


แก้ไข POM.XML
<?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>
<groupId>com.ncs.xsdgen</groupId>
<artifactId>SchemaGen</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>4.0.2</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>schemagen</id>
<goals>
<goal>schemagen</goal>
</goals>
</execution>
</executions>
<configuration>
<sources>
<source>src/main/java/com/ncs2polar/ncsv1/collection</source>
</sources>
<outputDirectory>${project.build.directory}/schemas</outputDirectory>
<verbose>true</verbose>
</configuration>
</plugin>
</plugins>
</build>
</project>
เอา code ไปวาง แล้วแก้ไข source ให้ไปที่ห้องหลักที่ต้องการ
จากนั้นสั่ง mvn install
หรือ build ใน NETBEANS
มันจะสร้างไฟล์ XSD ไว้ใน ห้อง target/schemas ตามที่เราใส่ไว้ใน POM



