|
10 | 10 | </parent>
|
11 | 11 |
|
12 | 12 | <groupId>com.vaadin</groupId>
|
13 |
| - <artifactId>vaadin-spring-main</artifactId> |
| 13 | + <artifactId>vaadin-spring-parent</artifactId> |
14 | 14 | <version>0.0.1-SNAPSHOT</version>
|
15 | 15 | <packaging>pom</packaging>
|
16 | 16 |
|
17 |
| - <name>vaadin-spring-main</name> |
| 17 | + <name>vaadin-spring-parent</name> |
18 | 18 | <description>
|
19 |
| - Provides Spring integration for Vaadin applications. |
| 19 | + Parent module for Spring integration for Vaadin applications. |
20 | 20 | </description>
|
21 | 21 | <url>https://github.com/vaadin/spring</url>
|
22 | 22 |
|
|
38 | 38 | < developerConnection>scm:git: [email protected]:vaadin/spring.git</ developerConnection>
|
39 | 39 | </scm>
|
40 | 40 |
|
| 41 | + <developers> |
| 42 | + <!-- In alphabetical order --> |
| 43 | + <developer> |
| 44 | + <name>AMahdy AbdElAziz</name> |
| 45 | + <organization>Vaadin</organization> |
| 46 | + |
| 47 | + </developer> |
| 48 | + <developer> |
| 49 | + <name>Chris Phillipson</name> |
| 50 | + |
| 51 | + </developer> |
| 52 | + <developer> |
| 53 | + <name>Henri Sara</name> |
| 54 | + <organization>Vaadin</organization> |
| 55 | + |
| 56 | + </developer> |
| 57 | + <developer> |
| 58 | + <name>Josh Long</name> |
| 59 | + |
| 60 | + </developer> |
| 61 | + <developer> |
| 62 | + <name>Matti Tahvonen</name> |
| 63 | + <organization>Vaadin</organization> |
| 64 | + |
| 65 | + </developer> |
| 66 | + <developer> |
| 67 | + <name>Nicolas Frankel</name> |
| 68 | + |
| 69 | + </developer> |
| 70 | + <developer> |
| 71 | + <name>Peter Lehto</name> |
| 72 | + <organization>Vaadin</organization> |
| 73 | + |
| 74 | + </developer> |
| 75 | + <developer> |
| 76 | + <name>Petter Holmström</name> |
| 77 | + <organization>Vaadin</organization> |
| 78 | + |
| 79 | + </developer> |
| 80 | + </developers> |
| 81 | + |
| 82 | + <properties> |
| 83 | + <project.build.encoding>UTF-8</project.build.encoding> |
| 84 | + <project.build.target>1.6</project.build.target> |
| 85 | + <project.build.source>1.6</project.build.source> |
| 86 | + |
| 87 | + <!-- These are typically overridden with BOMs --> |
| 88 | + <vaadin.version>7.4.2</vaadin.version> |
| 89 | + <spring.version>4.1.6.RELEASE</spring.version> |
| 90 | + <spring.boot.version>1.2.2.RELEASE</spring.boot.version> |
| 91 | + |
| 92 | + <slf4j.version>1.7.7</slf4j.version> |
| 93 | + |
| 94 | + <!-- Additional manifest fields --> |
| 95 | + <Vaadin-License-Title>Apache License 2.0</Vaadin-License-Title> |
| 96 | + </properties> |
| 97 | + |
41 | 98 | <build>
|
42 | 99 | <plugins>
|
43 |
| - <!-- Do not deploy top level pom. The vaadin-spring module does |
44 |
| - not depend on it so no need for it to end up in Maven repositories --> |
45 | 100 | <plugin>
|
46 | 101 | <groupId>org.apache.maven.plugins</groupId>
|
47 |
| - <artifactId>maven-deploy-plugin</artifactId> |
48 |
| - <version>2.8.2</version> |
| 102 | + <artifactId>maven-compiler-plugin</artifactId> |
| 103 | + <version>3.1</version> |
| 104 | + <configuration> |
| 105 | + <encoding>${project.build.encoding}</encoding> |
| 106 | + <target>${project.build.target}</target> |
| 107 | + <source>${project.build.source}</source> |
| 108 | + </configuration> |
| 109 | + </plugin> |
| 110 | + <plugin> |
| 111 | + <groupId>org.apache.maven.plugins</groupId> |
| 112 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 113 | + <version>2.14</version> |
49 | 114 | <configuration>
|
50 |
| - <skip>true</skip> |
| 115 | + <enableRulesSummary>false</enableRulesSummary> |
| 116 | + <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 117 | + <configLocation>checkstyle/vaadin-checkstyle.xml</configLocation> |
| 118 | + <violationSeverity>error</violationSeverity> |
| 119 | + <headerLocation>checkstyle/header</headerLocation> |
51 | 120 | </configuration>
|
| 121 | + <executions> |
| 122 | + <execution> |
| 123 | + <id>validate</id> |
| 124 | + <phase>validate</phase> |
| 125 | + <goals> |
| 126 | + <goal>check</goal> |
| 127 | + </goals> |
| 128 | + </execution> |
| 129 | + </executions> |
52 | 130 | </plugin>
|
53 | 131 | <plugin>
|
54 | 132 | <groupId>org.apache.maven.plugins</groupId>
|
55 |
| - <artifactId>maven-assembly-plugin</artifactId> |
| 133 | + <artifactId>maven-source-plugin</artifactId> |
56 | 134 | <version>2.2.1</version>
|
57 | 135 | <configuration>
|
58 |
| - <skipAssembly>true</skipAssembly> |
| 136 | + <excludeResources>true</excludeResources> |
59 | 137 | </configuration>
|
| 138 | + <executions> |
| 139 | + <execution> |
| 140 | + <id>attach-sources</id> |
| 141 | + <goals> |
| 142 | + <goal>jar-no-fork</goal> |
| 143 | + </goals> |
| 144 | + </execution> |
| 145 | + </executions> |
| 146 | + </plugin> |
| 147 | + <plugin> |
| 148 | + <groupId>org.apache.maven.plugins</groupId> |
| 149 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 150 | + <version>2.9</version> |
| 151 | + <executions> |
| 152 | + <execution> |
| 153 | + <phase>package</phase> |
| 154 | + <goals> |
| 155 | + <goal>jar</goal> |
| 156 | + </goals> |
| 157 | + </execution> |
| 158 | + </executions> |
60 | 159 | </plugin>
|
61 | 160 | </plugins>
|
| 161 | + <pluginManagement> |
| 162 | + <plugins> |
| 163 | + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 164 | + <plugin> |
| 165 | + <groupId>org.eclipse.m2e</groupId> |
| 166 | + <artifactId>lifecycle-mapping</artifactId> |
| 167 | + <version>1.0.0</version> |
| 168 | + <configuration> |
| 169 | + <lifecycleMappingMetadata> |
| 170 | + <pluginExecutions> |
| 171 | + <pluginExecution> |
| 172 | + <pluginExecutionFilter> |
| 173 | + <groupId> |
| 174 | + org.apache.maven.plugins |
| 175 | + </groupId> |
| 176 | + <artifactId> |
| 177 | + maven-checkstyle-plugin |
| 178 | + </artifactId> |
| 179 | + <versionRange> |
| 180 | + [2.14,) |
| 181 | + </versionRange> |
| 182 | + <goals> |
| 183 | + <goal>check</goal> |
| 184 | + </goals> |
| 185 | + </pluginExecutionFilter> |
| 186 | + <action> |
| 187 | + <ignore></ignore> |
| 188 | + </action> |
| 189 | + </pluginExecution> |
| 190 | + </pluginExecutions> |
| 191 | + </lifecycleMappingMetadata> |
| 192 | + </configuration> |
| 193 | + </plugin> |
| 194 | + </plugins> |
| 195 | + </pluginManagement> |
62 | 196 | </build>
|
63 | 197 |
|
64 | 198 | <modules>
|
|
0 commit comments