Advertisement
Guest User

Untitled

a guest
Jul 4th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.16 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5.  
  6. <groupId>com.test</groupId>
  7. <artifactId>service</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10.  
  11. <name>service</name>
  12. <description>Demo project for Spring Boot</description>
  13.  
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>1.5.4.RELEASE</version>
  18. <relativePath/> <!-- lookup parent from repository -->
  19. </parent>
  20.  
  21. <properties>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. <java.version>1.8</java.version>
  25. </properties>
  26.  
  27. <dependencies>
  28. <dependency>
  29. <groupId>com.groupid</groupId>
  30. <artifactId>entities</artifactId>
  31. <version>1.0.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-jdbc</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-web-services</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.microsoft.sqlserver</groupId>
  47. <artifactId>mssql-jdbc</artifactId>
  48. <version>6.1.0.jre8</version>
  49. <scope>runtime</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-test</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.jooq.trial</groupId>
  58. <artifactId>jooq</artifactId>
  59. <version>3.9.3</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.jooq.trial</groupId>
  63. <artifactId>jooq-meta</artifactId>
  64. <version>3.9.3</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.jooq.trial</groupId>
  68. <artifactId>jooq-codegen</artifactId>
  69. <version>3.9.3</version>
  70. </dependency>
  71. </dependencies>
  72.  
  73. <build>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. </plugin>
  79. <plugin>
  80. <groupId>org.jooq.trial</groupId>
  81. <artifactId>jooq-codegen-maven</artifactId>
  82. <version>3.9.3</version>
  83. <executions>
  84. <execution>
  85. <goals>
  86. <goal>generate</goal>
  87. </goals>
  88. </execution>
  89. </executions>
  90.  
  91. <!-- Manage the plugin's dependency. In this example, we'll use a PostgreSQL database -->
  92. <dependencies>
  93. <dependency>
  94. <groupId>com.microsoft.sqlserver</groupId>
  95. <artifactId>mssql-jdbc</artifactId>
  96. <version>6.1.0.jre8</version>
  97. </dependency>
  98. </dependencies>
  99.  
  100. <!-- Specify the plugin configuration.
  101. The configuration format is the same as for the standalone code generator -->
  102. <configuration>
  103. <!--<logging>WARN</logging>-->
  104. <!-- JDBC connection parameters -->
  105. <jdbc>
  106. <driver>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver>
  107. <url>jdbc:sqlserver://localhost;databaseName=test</url>
  108. <user>sa</user>
  109. <password>test</password>
  110. </jdbc>
  111.  
  112. <!-- Generator parameters -->
  113. <generator>
  114. <database>
  115. <includes>.*</includes>
  116. <excludes></excludes>
  117. <!--<inputCatalog>public</inputCatalog>-->
  118. <inputSchema>dbo</inputSchema>
  119. </database>
  120. <target>
  121. <packageName>mypackage</packageName>
  122. <directory>mypath</directory>
  123. </target>
  124. </generator>
  125. </configuration>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. </project>
  130.  
  131. "C:Program FilesJavajdk1.8.0_131binjava" -Dmaven.multiModuleProjectDirectory=C:projectsservice "-Dmaven.home=C:Program FilesJetBrainsIntelliJ IDEA 2017.1.2pluginsmavenlibmaven3" "-Dclassworlds.conf=C:Program FilesJetBrainsIntelliJ IDEA 2017.1.2pluginsmavenlibmaven3binm2.conf" "-javaagent:C:Program FilesJetBrainsIntelliJ IDEA 2017.1.2libidea_rt.jar=59337:C:Program FilesJetBrainsIntelliJ IDEA 2017.1.2bin" -Dfile.encoding=UTF-8 -classpath "C:Program FilesJetBrainsIntelliJ IDEA 2017.1.2pluginsmavenlibmaven3bootplexus-classworlds-2.5.2.jar" org.codehaus.classworlds.Launcher -Didea.version=2017.1.4 jooq-codegen:generate
  132. [INFO] Scanning for projects...
  133. [INFO]
  134. [INFO] ------------------------------------------------------------------------
  135. [INFO] Building service 0.0.1-SNAPSHOT
  136. [INFO] ------------------------------------------------------------------------
  137. [INFO]
  138. [INFO] --- jooq-codegen-maven:3.9.3:generate (default-cli) @ service ---
  139. [INFO] Database : Inferring database org.jooq.util.sqlserver.SQLServerDatabase from URL jdbc:sqlserver://localhost:1433;authentication=NotSpecified;authenticationScheme=nativeAuthentication;xopenStates=false;sendTimeAsDatetime=true;trustServerCertificate=false;TransparentNetworkIPResolution=true;serverNameAsACE=false;sendStringParametersAsUnicode=true;selectMethod=direct;responseBuffering=adaptive;packetSize=8000;multiSubnetFailover=false;loginTimeout=15;lockTimeout=-1;lastUpdateCount=true;encrypt=false;disableStatementPooling=true;databaseName=test;columnEncryptionSetting=Disabled;applicationName=Microsoft JDBC Driver for SQL Server;applicationIntent=readwrite;
  140. [INFO] No <inputCatalog/> was provided. Generating ALL available catalogs instead.
  141. [INFO] License parameters
  142. [INFO] ----------------------------------------------------------
  143. [INFO] Thank you for using jOOQ and jOOQ's code generator
  144. [INFO]
  145. [INFO] Database parameters
  146. [INFO] ----------------------------------------------------------
  147. [INFO] dialect : SQLSERVER
  148. [INFO] URL : jdbc:sqlserver://localhost:1433;authentication=NotSpecified;authenticationScheme=nativeAuthentication;xopenStates=false;sendTimeAsDatetime=true;trustServerCertificate=false;TransparentNetworkIPResolution=true;serverNameAsACE=false;sendStringParametersAsUnicode=true;selectMethod=direct;responseBuffering=adaptive;packetSize=8000;multiSubnetFailover=false;loginTimeout=15;lockTimeout=-1;lastUpdateCount=true;encrypt=false;disableStatementPooling=true;databaseName=test;columnEncryptionSetting=Disabled;applicationName=Microsoft JDBC Driver for SQL Server;applicationIntent=readwrite;
  149. [INFO] target dir : [target dir]
  150. [INFO] target package : com.test
  151. [INFO] includes : [.*]
  152. [INFO] excludes : []
  153. [INFO] includeExcludeColumns : false
  154. [INFO] ----------------------------------------------------------
  155. [INFO]
  156. [INFO] JavaGenerator parameters
  157. [INFO] ----------------------------------------------------------
  158. [INFO] strategy : class org.jooq.util.DefaultGeneratorStrategy
  159. [INFO] deprecated : true
  160. [INFO] generated annotation : true
  161. [INFO] JPA annotations : false
  162. [INFO] validation annotations : false
  163. [INFO] instance fields : true
  164. [INFO] sequences : true
  165. [INFO] udts : true
  166. [INFO] routines : true
  167. [INFO] tables : true
  168. [INFO] records : true
  169. [INFO] pojos : false
  170. [INFO] immutable pojos : false
  171. [INFO] interfaces : false
  172. [INFO] immutable interfaces : false
  173. [INFO] daos : false
  174. [INFO] relations : true
  175. [INFO] table-valued functions : true
  176. [INFO] global references : true
  177. [INFO] ----------------------------------------------------------
  178. [INFO]
  179. [INFO] Generation remarks
  180. [INFO] ----------------------------------------------------------
  181. [INFO]
  182. [INFO] ----------------------------------------------------------
  183. [INFO]
  184.  
  185. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  186. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  187. @@@@@@@@@@@@@@@@ @@ @@@@@@@@@@
  188. @@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@
  189. @@@@@@@@@@@@@@@@ @@ @@ @@@@@@@@@@
  190. @@@@@@@@@@ @@@@ @@ @@ @@@@@@@@@@
  191. @@@@@@@@@@ @@ @@@@@@@@@@
  192. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  193. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  194. @@@@@@@@@@ @@ @@@@@@@@@@
  195. @@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@
  196. @@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@
  197. @@@@@@@@@@ @@ @ @ @@@@@@@@@@
  198. @@@@@@@@@@ @@ @@@@@@@@@@
  199. @@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@
  200. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  201. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Thank you for using the 30 day free jOOQ 3.9.3 trial edition
  202.  
  203. [INFO] Generating catalogs : Total: 0
  204. [INFO] Removing excess files
  205. [INFO] ------------------------------------------------------------------------
  206. [INFO] BUILD SUCCESS
  207. [INFO] ------------------------------------------------------------------------
  208. [INFO] Total time: 2.214 s
  209. [INFO] Finished at: 2017-07-04T18:10:46-05:00
  210. [INFO] Final Memory: 23M/217M
  211. [INFO] ------------------------------------------------------------------------
  212.  
  213. Process finished with exit code 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement