|
61 | 61 | </properties> |
62 | 62 |
|
63 | 63 | <dependencies> |
| 64 | + <!-- |
64 | 65 | <dependency> |
65 | 66 | <groupId>org.springframework.boot</groupId> |
66 | 67 | <artifactId>spring-boot-starter-activemq</artifactId> |
|
69 | 70 | <groupId>org.springframework.boot</groupId> |
70 | 71 | <artifactId>spring-boot-starter-actuator</artifactId> |
71 | 72 | </dependency> |
| 73 | + --> |
72 | 74 | <dependency> |
73 | 75 | <groupId>org.springframework.boot</groupId> |
74 | 76 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
75 | 77 | </dependency> |
| 78 | + <!-- |
76 | 79 | <dependency> |
77 | 80 | <groupId>org.springframework.boot</groupId> |
78 | 81 | <artifactId>spring-boot-starter-integration</artifactId> |
|
81 | 84 | <groupId>org.springframework.boot</groupId> |
82 | 85 | <artifactId>spring-boot-starter-jersey</artifactId> |
83 | 86 | </dependency> |
| 87 | + --> |
84 | 88 | <dependency> |
85 | 89 | <groupId>org.springframework.boot</groupId> |
86 | 90 | <artifactId>spring-boot-starter-mail</artifactId> |
|
101 | 105 | <groupId>org.springframework.boot</groupId> |
102 | 106 | <artifactId>spring-boot-starter-web</artifactId> |
103 | 107 | </dependency> |
| 108 | + <!-- |
104 | 109 | <dependency> |
105 | 110 | <groupId>org.springframework.boot</groupId> |
106 | 111 | <artifactId>spring-boot-starter-websocket</artifactId> |
107 | 112 | </dependency> |
| 113 | + --> |
108 | 114 | <!-- |
109 | 115 | <dependency> |
110 | 116 | <groupId>de.codecentric</groupId> |
|
120 | 126 | <artifactId>spring-boot-devtools</artifactId> |
121 | 127 | <scope>runtime</scope> |
122 | 128 | </dependency> |
| 129 | + <!-- |
123 | 130 | <dependency> |
124 | 131 | <groupId>com.h2database</groupId> |
125 | 132 | <artifactId>h2</artifactId> |
126 | 133 | <scope>runtime</scope> |
127 | 134 | </dependency> |
| 135 | + --> |
128 | 136 | <dependency> |
129 | 137 | <groupId>org.postgresql</groupId> |
130 | 138 | <artifactId>postgresql</artifactId> |
|
303 | 311 | <artifactId>spring-boot-starter-tomcat</artifactId> |
304 | 312 | <scope>provided</scope> |
305 | 313 | </dependency> |
| 314 | + <!-- |
306 | 315 | <dependency> |
307 | 316 | <groupId>com.impossibl.pgjdbc-ng</groupId> |
308 | 317 | <artifactId>pgjdbc-ng</artifactId> |
309 | 318 | <version>0.8.2</version> |
310 | 319 | </dependency> |
| 320 | + --> |
311 | 321 | </dependencies> |
312 | 322 |
|
313 | 323 | <dependencyManagement> |
|
708 | 718 | <goal>build-classpath</goal> |
709 | 719 | </goals> |
710 | 720 | <configuration> |
711 | | - <!-- |
712 | | - <includes>**/*.class,**/*.properties</includes> |
713 | | - --> |
714 | | - <outputDirectory>${project.build.directory}/classes</outputDirectory> |
715 | 721 | <overWriteReleases>false</overWriteReleases> |
716 | 722 | <overWriteSnapshots>true</overWriteSnapshots> |
717 | | - <outputFile>${project.build.directory}/classpath.txt</outputFile> |
| 723 | + <outputFile>${project.build.outputDirectory}/classpath.txt</outputFile> |
718 | 724 | <failOnWarning>false</failOnWarning> |
719 | 725 | <ignoredDependencies> |
720 | 726 | <ignoredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredDependency> |
|
730 | 736 | <ignoredUnusedDeclaredDependencies> |
731 | 737 | <ignoredUnusedDeclaredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredUnusedDeclaredDependency> |
732 | 738 | </ignoredUnusedDeclaredDependencies> |
| 739 | + <artifactItems> |
| 740 | + <artifactItem> |
| 741 | + <groupId>com.github.jsimone</groupId> |
| 742 | + <artifactId>webapp-runner</artifactId> |
| 743 | + <version>9.0.19.0</version> |
| 744 | + <destFileName>webapp-runner.jar</destFileName> |
| 745 | + </artifactItem> |
| 746 | + </artifactItems> |
733 | 747 | </configuration> |
734 | 748 | </execution> |
735 | 749 | </executions> |
|
816 | 830 | <profile>prod</profile> |
817 | 831 | </profiles> |
818 | 832 | </configuration> |
| 833 | + <executions> |
| 834 | + <execution> |
| 835 | + <goals> |
| 836 | + <goal>repackage</goal> |
| 837 | + <goal>build-info</goal> |
| 838 | + </goals> |
| 839 | + <configuration> |
| 840 | + <additionalProperties> |
| 841 | + <encoding.source>${project.build.sourceEncoding}</encoding.source> |
| 842 | + <encoding.reporting>${project.reporting.outputEncoding}</encoding.reporting> |
| 843 | + <java.source>${maven.compiler.source}</java.source> |
| 844 | + <java.target>${maven.compiler.target}</java.target> |
| 845 | + </additionalProperties> |
| 846 | + </configuration> |
| 847 | + </execution> |
| 848 | + </executions> |
| 849 | + </plugin> |
| 850 | + |
| 851 | + <plugin> |
| 852 | + <groupId>org.apache.maven.plugins</groupId> |
| 853 | + <artifactId>maven-dependency-plugin</artifactId> |
| 854 | + <executions> |
| 855 | + <execution> |
| 856 | + <id>unpack-dependencies</id> |
| 857 | + <phase>package</phase> |
| 858 | + <goals> |
| 859 | + <goal>analyze-only</goal> |
| 860 | + <!-- |
| 861 | + <goal>analyze-report</goal> |
| 862 | + <goal>unpack-dependencies</goal> |
| 863 | + --> |
| 864 | + <goal>build-classpath</goal> |
| 865 | + </goals> |
| 866 | + <configuration> |
| 867 | + <!-- |
| 868 | + <includes>**/*.class,**/*.properties</includes> |
| 869 | + --> |
| 870 | + <outputDirectory>${project.build.directory}/classes</outputDirectory> |
| 871 | + <overWriteReleases>false</overWriteReleases> |
| 872 | + <overWriteSnapshots>true</overWriteSnapshots> |
| 873 | + <outputFile>${project.build.directory}/classpath.txt</outputFile> |
| 874 | + <failOnWarning>false</failOnWarning> |
| 875 | + <ignoredDependencies> |
| 876 | + <ignoredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredDependency> |
| 877 | + <ignoredDependency>org.apache.maven.scm:maven-scm</ignoredDependency> |
| 878 | + <ignoredDependency>org.apache.maven.scm:maven-scm-providers-git</ignoredDependency> |
| 879 | + <ignoredDependency>org.apache.maven.scm:maven-scm-providers-standard</ignoredDependency> |
| 880 | + <ignoredDependency>org.apache.maven.scm:maven-scm-providers</ignoredDependency> |
| 881 | + <ignoredDependency>org.apache.maven.scm:maven-scm-managers</ignoredDependency> |
| 882 | + </ignoredDependencies> |
| 883 | + <ignoredUsedUndeclaredDependencies> |
| 884 | + <ignoredUsedUndeclaredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredUsedUndeclaredDependency> |
| 885 | + </ignoredUsedUndeclaredDependencies> |
| 886 | + <ignoredUnusedDeclaredDependencies> |
| 887 | + <ignoredUnusedDeclaredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredUnusedDeclaredDependency> |
| 888 | + </ignoredUnusedDeclaredDependencies> |
| 889 | + </configuration> |
| 890 | + </execution> |
| 891 | + </executions> |
819 | 892 | </plugin> |
820 | 893 | <plugin> |
821 | 894 | <groupId>org.apache.maven.plugins</groupId> |
|
0 commit comments