Home
Name Modified Size InfoDownloads / Week
readme.txt 2019-01-20 4.2 kB
Totals: 1 Item   4.2 kB 0
<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.javainuse</groupId>
  <artifactId>drools-tables</artifactId>
  <version>0.0.1-SNAPSHOT</version>

<properties>
		<drools.version>7.14.0.Final</drools.version>
</properties>
	<dependencies>
		<!-- DROOLS --> 
		<dependency>
			<groupId>org.kie</groupId>
			<artifactId>kie-api</artifactId>
			<version>${drools.version}</version>
		</dependency>
		<dependency>
			<groupId>org.drools</groupId>
			<artifactId>drools-core</artifactId>
			<version>${drools.version}</version>
		</dependency>
		<dependency>
			<groupId>org.drools</groupId>
			<artifactId>drools-compiler</artifactId>
			<version>${drools.version}</version>
		</dependency>
		<dependency>
			<groupId>org.drools</groupId>
			<artifactId>drools-decisiontables</artifactId>
			<version>${drools.version}</version>
		</dependency>		
        <dependency>
            <groupId>org.kie</groupId>
            <artifactId>kie-ci</artifactId>
            <version>${drools.version}</version>
         </dependency>
         
		<!-- JSON -> JAVA MODEL -->         
		<dependency>
		    <groupId>commons-lang</groupId>
		    <artifactId>commons-lang</artifactId>
		    <version>2.6</version>
		</dependency>
		<dependency>
		    <groupId>com.fasterxml.jackson.core</groupId>
		    <artifactId>jackson-databind</artifactId>
		    <version>2.9.8</version>
		</dependency>
		<dependency>
		    <groupId>org.jsonschema2pojo</groupId>
		    <artifactId>jsonschema2pojo-core</artifactId>
		    <version>1.0.0</version>
		</dependency>     
		<dependency>
		    <groupId>org.slf4j</groupId>
		    <artifactId>slf4j-simple</artifactId>
		    <version>1.7.25</version>
		</dependency>         		 
	</dependencies>

  <build>
	<plugins>
		<plugin>
		    <groupId>org.apache.maven.plugins</groupId>
		    <artifactId>maven-compiler-plugin</artifactId>
		     <version>3.8.0</version>
		     <configuration>
		        <source>1.8</source>
		        <target>1.8</target>
		    </configuration>
		</plugin>
		<plugin>
			<groupId>org.jsonschema2pojo</groupId>
			<artifactId>jsonschema2pojo-maven-plugin</artifactId>
			<version>1.0.0</version>
			<configuration>
				<sourceDirectory>${basedir}/src/test/resources/json/project.json</sourceDirectory>
				<targetPackage>post.j2.model</targetPackage>				
				<sourceType>json</sourceType>
				<generateBuilders>false</generateBuilders>
				<includeGetters>true</includeGetters>
				<includeConstructors>false</includeConstructors>
				<targetLanguage>java</targetLanguage>
				<annotationStyle>jackson2</annotationStyle>
				<includeHashcodeAndEquals>false</includeHashcodeAndEquals>
				<addCompileSourceRoot>false</addCompileSourceRoot>
				<constructorsRequiredPropertiesOnly>false</constructorsRequiredPropertiesOnly>							
			</configuration>
			<executions>
				<execution>
					<goals>
						<goal>generate</goal>
					</goals>
				</execution>
			</executions>
		</plugin> 
		<!--   <plugin>
			<groupId>org.jsonschema2pojo</groupId>
			<artifactId>jsonschema2pojo-maven-plugin</artifactId>
			<version>1.0.0</version>
			<configuration>
				<sourceDirectory>${basedir}/src/test/resources/json/skype.json</sourceDirectory>
				<targetPackage>pre.j2.model</targetPackage>				
				<sourceType>json</sourceType>
				<generateBuilders>false</generateBuilders>
				<includeGetters>true</includeGetters>
				<includeConstructors>false</includeConstructors>
				<targetLanguage>java</targetLanguage>
				<annotationStyle>jackson2</annotationStyle>
				<includeHashcodeAndEquals>false</includeHashcodeAndEquals>
				<addCompileSourceRoot>false</addCompileSourceRoot>
				<constructorsRequiredPropertiesOnly>false</constructorsRequiredPropertiesOnly>							
			</configuration>
			<executions>
				<execution>
					<goals>
						<goal>generate</goal>
					</goals>
				</execution>
			</executions>
		</plugin> -->
	</plugins>
  </build>


</project>
Source: readme.txt, updated 2019-01-20