#91 Changed version numbers and removed artifact names
This commit is contained in:
		| @@ -1,194 +1,186 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!-- | ||||
|   Licensed to the Apache Software Foundation (ASF) under one | ||||
|   or more contributor license agreements.  See the NOTICE file | ||||
|   distributed with this work for additional information | ||||
|   regarding copyright ownership.  The ASF licenses this file | ||||
|   to you under the Apache License, Version 2.0 (the | ||||
|   "License"); you may not use this file except in compliance | ||||
|   with the License.  You may obtain a copy of the License at | ||||
|    | ||||
|          http://www.apache.org/licenses/LICENSE-2.0 | ||||
|           | ||||
|   Unless required by applicable law or agreed to in writing, | ||||
|   software distributed under the License is distributed on an | ||||
|   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||||
|   KIND, either express or implied.  See the License for the | ||||
|   specific language governing permissions and limitations | ||||
|   under the License. | ||||
| --><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/maven-v4_0_0.xsd"> | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
| <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor  | ||||
| 	license agreements. See the NOTICE file distributed with this work for additional  | ||||
| 	information regarding copyright ownership. The ASF licenses this file to  | ||||
| 	you under the Apache License, Version 2.0 (the "License"); you may not use  | ||||
| 	this file except in compliance with the License. You may obtain a copy of  | ||||
| 	the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required  | ||||
| 	by applicable law or agreed to in writing, software distributed under the  | ||||
| 	License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS  | ||||
| 	OF ANY KIND, either express or implied. See the License for the specific  | ||||
| 	language governing permissions and limitations under the License. --> | ||||
| <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/maven-v4_0_0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
|  | ||||
|     <parent> | ||||
|         <groupId>com.iluwatar</groupId> | ||||
|         <artifactId>naked-objects</artifactId> | ||||
|         <version>1.0-SNAPSHOT</version> | ||||
|     </parent> | ||||
| 	<parent> | ||||
| 		<groupId>com.iluwatar</groupId> | ||||
| 		<artifactId>naked-objects</artifactId> | ||||
| 		<version>1.1.0</version> | ||||
| 	</parent> | ||||
|  | ||||
|     <artifactId>naked-objects-dom</artifactId> | ||||
|     <name>Simple App DOM</name> | ||||
| 	<artifactId>naked-objects-dom</artifactId> | ||||
|  | ||||
|     <build> | ||||
|         <resources> | ||||
|             <resource> | ||||
|                 <directory>src/main/resources</directory> | ||||
|             </resource> | ||||
|             <resource> | ||||
|                 <directory>src/main/java</directory> | ||||
|                 <includes> | ||||
|                     <include>**</include> | ||||
|                 </includes> | ||||
|                 <excludes> | ||||
|                     <exclude>**/*.java</exclude> | ||||
|                 </excludes> | ||||
|             </resource> | ||||
|         </resources> | ||||
|     </build> | ||||
| 	<build> | ||||
| 		<resources> | ||||
| 			<resource> | ||||
| 				<directory>src/main/resources</directory> | ||||
| 			</resource> | ||||
| 			<resource> | ||||
| 				<directory>src/main/java</directory> | ||||
| 				<includes> | ||||
| 					<include>**</include> | ||||
| 				</includes> | ||||
| 				<excludes> | ||||
| 					<exclude>**/*.java</exclude> | ||||
| 				</excludes> | ||||
| 			</resource> | ||||
| 		</resources> | ||||
| 	</build> | ||||
|  | ||||
|     <dependencies> | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-applib</artifactId> | ||||
|         </dependency> | ||||
| 	<dependencies> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-applib</artifactId> | ||||
| 		</dependency> | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-unittestsupport</artifactId> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-unittestsupport</artifactId> | ||||
| 			<scope>test</scope> | ||||
| 		</dependency> | ||||
|  | ||||
|         <!-- Bytecode libraries (for mocking) --> | ||||
|         <dependency> | ||||
|             <groupId>org.objenesis</groupId> | ||||
|             <artifactId>objenesis</artifactId> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
| 		<!-- Bytecode libraries (for mocking) --> | ||||
| 		<dependency> | ||||
| 			<groupId>org.objenesis</groupId> | ||||
| 			<artifactId>objenesis</artifactId> | ||||
| 			<scope>test</scope> | ||||
| 		</dependency> | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>org.assertj</groupId> | ||||
|             <artifactId>assertj-core</artifactId> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.assertj</groupId> | ||||
| 			<artifactId>assertj-core</artifactId> | ||||
| 			<scope>test</scope> | ||||
| 		</dependency> | ||||
|  | ||||
|     </dependencies> | ||||
| 	</dependencies> | ||||
|  | ||||
|     <profiles> | ||||
|         <profile> | ||||
|             <id>enhance</id> | ||||
|             <activation> | ||||
|                 <activeByDefault>true</activeByDefault> | ||||
|             </activation> | ||||
|             <properties> | ||||
|                 <datanucleus-maven-plugin.version>4.0.0-release</datanucleus-maven-plugin.version> | ||||
|             </properties> | ||||
|             <build> | ||||
|                 <pluginManagement> | ||||
|                     <plugins> | ||||
|                         <plugin> | ||||
|                             <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> | ||||
|                             <groupId>org.eclipse.m2e</groupId> | ||||
|                             <artifactId>lifecycle-mapping</artifactId> | ||||
|                             <version>1.0.0</version> | ||||
|                             <configuration> | ||||
|                                 <lifecycleMappingMetadata> | ||||
|                                     <pluginExecutions> | ||||
|                                         <pluginExecution> | ||||
|                                             <pluginExecutionFilter> | ||||
|                                                 <groupId>org.datanucleus</groupId> | ||||
|                                                 <artifactId>datanucleus-maven-plugin</artifactId> | ||||
|                                                 <versionRange>[${datanucleus-maven-plugin.version},)</versionRange> | ||||
|                                                 <goals> | ||||
|                                                     <goal>enhance</goal> | ||||
|                                                 </goals> | ||||
|                                             </pluginExecutionFilter> | ||||
|                                             <action> | ||||
|                                                 <ignore></ignore> | ||||
|                                             </action> | ||||
|                                         </pluginExecution> | ||||
|                                     </pluginExecutions> | ||||
|                                 </lifecycleMappingMetadata> | ||||
|                             </configuration> | ||||
|                         </plugin> | ||||
|                     </plugins> | ||||
|                 </pluginManagement> | ||||
|                 <plugins> | ||||
|                     <plugin> | ||||
|                         <groupId>org.datanucleus</groupId> | ||||
|                         <artifactId>datanucleus-maven-plugin</artifactId> | ||||
|                         <version>${datanucleus-maven-plugin.version}</version> | ||||
|                         <configuration> | ||||
|                             <fork>false</fork> | ||||
|                             <log4jConfiguration>${basedir}/log4j.properties</log4jConfiguration> | ||||
|                             <verbose>true</verbose> | ||||
|                             <props>${basedir}/datanucleus.properties</props> | ||||
|                         </configuration> | ||||
|                         <executions> | ||||
|                             <execution> | ||||
|                                 <phase>process-classes</phase> | ||||
|                                 <goals> | ||||
|                                     <goal>enhance</goal> | ||||
|                                 </goals> | ||||
|                             </execution> | ||||
|                         </executions> | ||||
|                     </plugin> | ||||
|                 </plugins> | ||||
|             </build> | ||||
|             <dependencies> | ||||
|                 <dependency> | ||||
|                     <groupId>org.datanucleus</groupId> | ||||
|                     <artifactId>datanucleus-core</artifactId> | ||||
|                 </dependency> | ||||
|                 <dependency> | ||||
|                     <groupId>org.datanucleus</groupId> | ||||
|                     <artifactId>datanucleus-jodatime</artifactId> | ||||
|                 </dependency> | ||||
|                 <dependency> | ||||
|                     <groupId>org.datanucleus</groupId> | ||||
|                     <artifactId>datanucleus-api-jdo</artifactId> | ||||
|                 </dependency> | ||||
|             </dependencies> | ||||
|         </profile> | ||||
|         <profile> | ||||
|             <id>isis-validate</id> | ||||
|             <activation> | ||||
|             </activation> | ||||
|             <build> | ||||
|                 <plugins> | ||||
|                     <plugin> | ||||
|                         <groupId>org.apache.isis.tool</groupId> | ||||
|                         <artifactId>isis-maven-plugin</artifactId> | ||||
|                         <version>1.9.0-SNAPSHOT</version> | ||||
|                         <configuration> | ||||
|                             <isisConfigDir>../webapp/src/main/webapp/WEB-INF</isisConfigDir> | ||||
|                         </configuration> | ||||
|                         <dependencies> | ||||
|                             <dependency> | ||||
|                                 <groupId>org.apache.isis.example.application</groupId> | ||||
|                                 <artifactId>simpleapp-dom</artifactId> | ||||
|                                 <version>1.9.0-SNAPSHOT</version> | ||||
|                             </dependency> | ||||
|                             <!-- | ||||
|                             ... workaround to avoid conflict with plexus-default | ||||
|                                 (not sure why exclusions in the isis-maven-plugin aren't sufficient, though ... | ||||
|                             --> | ||||
|                             <dependency> | ||||
|                                 <groupId>com.google.guava</groupId> | ||||
|                                 <artifactId>guava</artifactId> | ||||
|                                 <version>16.0.1</version> | ||||
|                             </dependency> | ||||
|                         </dependencies> | ||||
|                         <executions> | ||||
|                             <execution> | ||||
|                                 <phase>test</phase> | ||||
|                                 <goals> | ||||
|                                     <goal>validate</goal> | ||||
|                                 </goals> | ||||
|                             </execution> | ||||
|                         </executions> | ||||
|                     </plugin> | ||||
|                 </plugins> | ||||
|             </build> | ||||
|         </profile> | ||||
|     </profiles> | ||||
| 	<profiles> | ||||
| 		<profile> | ||||
| 			<id>enhance</id> | ||||
| 			<activation> | ||||
| 				<activeByDefault>true</activeByDefault> | ||||
| 			</activation> | ||||
| 			<properties> | ||||
| 				<datanucleus-maven-plugin.version>4.0.0-release</datanucleus-maven-plugin.version> | ||||
| 			</properties> | ||||
| 			<build> | ||||
| 				<pluginManagement> | ||||
| 					<plugins> | ||||
| 						<plugin> | ||||
| 							<!--This plugin's configuration is used to store Eclipse m2e settings  | ||||
| 								only. It has no influence on the Maven build itself. --> | ||||
| 							<groupId>org.eclipse.m2e</groupId> | ||||
| 							<artifactId>lifecycle-mapping</artifactId> | ||||
| 							<version>1.0.0</version> | ||||
| 							<configuration> | ||||
| 								<lifecycleMappingMetadata> | ||||
| 									<pluginExecutions> | ||||
| 										<pluginExecution> | ||||
| 											<pluginExecutionFilter> | ||||
| 												<groupId>org.datanucleus</groupId> | ||||
| 												<artifactId>datanucleus-maven-plugin</artifactId> | ||||
| 												<versionRange>[${datanucleus-maven-plugin.version},)</versionRange> | ||||
| 												<goals> | ||||
| 													<goal>enhance</goal> | ||||
| 												</goals> | ||||
| 											</pluginExecutionFilter> | ||||
| 											<action> | ||||
| 												<ignore></ignore> | ||||
| 											</action> | ||||
| 										</pluginExecution> | ||||
| 									</pluginExecutions> | ||||
| 								</lifecycleMappingMetadata> | ||||
| 							</configuration> | ||||
| 						</plugin> | ||||
| 					</plugins> | ||||
| 				</pluginManagement> | ||||
| 				<plugins> | ||||
| 					<plugin> | ||||
| 						<groupId>org.datanucleus</groupId> | ||||
| 						<artifactId>datanucleus-maven-plugin</artifactId> | ||||
| 						<version>${datanucleus-maven-plugin.version}</version> | ||||
| 						<configuration> | ||||
| 							<fork>false</fork> | ||||
| 							<log4jConfiguration>${basedir}/log4j.properties</log4jConfiguration> | ||||
| 							<verbose>true</verbose> | ||||
| 							<props>${basedir}/datanucleus.properties</props> | ||||
| 						</configuration> | ||||
| 						<executions> | ||||
| 							<execution> | ||||
| 								<phase>process-classes</phase> | ||||
| 								<goals> | ||||
| 									<goal>enhance</goal> | ||||
| 								</goals> | ||||
| 							</execution> | ||||
| 						</executions> | ||||
| 					</plugin> | ||||
| 				</plugins> | ||||
| 			</build> | ||||
| 			<dependencies> | ||||
| 				<dependency> | ||||
| 					<groupId>org.datanucleus</groupId> | ||||
| 					<artifactId>datanucleus-core</artifactId> | ||||
| 				</dependency> | ||||
| 				<dependency> | ||||
| 					<groupId>org.datanucleus</groupId> | ||||
| 					<artifactId>datanucleus-jodatime</artifactId> | ||||
| 				</dependency> | ||||
| 				<dependency> | ||||
| 					<groupId>org.datanucleus</groupId> | ||||
| 					<artifactId>datanucleus-api-jdo</artifactId> | ||||
| 				</dependency> | ||||
| 			</dependencies> | ||||
| 		</profile> | ||||
| 		<profile> | ||||
| 			<id>isis-validate</id> | ||||
| 			<activation> | ||||
| 			</activation> | ||||
| 			<build> | ||||
| 				<plugins> | ||||
| 					<plugin> | ||||
| 						<groupId>org.apache.isis.tool</groupId> | ||||
| 						<artifactId>isis-maven-plugin</artifactId> | ||||
| 						<version>1.9.0-SNAPSHOT</version> | ||||
| 						<configuration> | ||||
| 							<isisConfigDir>../webapp/src/main/webapp/WEB-INF</isisConfigDir> | ||||
| 						</configuration> | ||||
| 						<dependencies> | ||||
| 							<dependency> | ||||
| 								<groupId>org.apache.isis.example.application</groupId> | ||||
| 								<artifactId>simpleapp-dom</artifactId> | ||||
| 								<version>1.9.0-SNAPSHOT</version> | ||||
| 							</dependency> | ||||
| 							<!-- ... workaround to avoid conflict with plexus-default (not sure  | ||||
| 								why exclusions in the isis-maven-plugin aren't sufficient, though ... --> | ||||
| 							<dependency> | ||||
| 								<groupId>com.google.guava</groupId> | ||||
| 								<artifactId>guava</artifactId> | ||||
| 								<version>16.0.1</version> | ||||
| 							</dependency> | ||||
| 						</dependencies> | ||||
| 						<executions> | ||||
| 							<execution> | ||||
| 								<phase>test</phase> | ||||
| 								<goals> | ||||
| 									<goal>validate</goal> | ||||
| 								</goals> | ||||
| 							</execution> | ||||
| 						</executions> | ||||
| 					</plugin> | ||||
| 				</plugins> | ||||
| 			</build> | ||||
| 		</profile> | ||||
| 	</profiles> | ||||
|  | ||||
| </project> | ||||
|   | ||||
| @@ -1,38 +1,31 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!-- | ||||
|   Licensed to the Apache Software Foundation (ASF) under one | ||||
|   or more contributor license agreements.  See the NOTICE file | ||||
|   distributed with this work for additional information | ||||
|   regarding copyright ownership.  The ASF licenses this file | ||||
|   to you under the Apache License, Version 2.0 (the | ||||
|   "License"); you may not use this file except in compliance | ||||
|   with the License.  You may obtain a copy of the License at | ||||
|    | ||||
|          http://www.apache.org/licenses/LICENSE-2.0 | ||||
|           | ||||
|   Unless required by applicable law or agreed to in writing, | ||||
|   software distributed under the License is distributed on an | ||||
|   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||||
|   KIND, either express or implied.  See the License for the | ||||
|   specific language governing permissions and limitations | ||||
|   under the License. | ||||
| --><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/maven-v4_0_0.xsd"> | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
| <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor  | ||||
| 	license agreements. See the NOTICE file distributed with this work for additional  | ||||
| 	information regarding copyright ownership. The ASF licenses this file to  | ||||
| 	you under the Apache License, Version 2.0 (the "License"); you may not use  | ||||
| 	this file except in compliance with the License. You may obtain a copy of  | ||||
| 	the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required  | ||||
| 	by applicable law or agreed to in writing, software distributed under the  | ||||
| 	License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS  | ||||
| 	OF ANY KIND, either express or implied. See the License for the specific  | ||||
| 	language governing permissions and limitations under the License. --> | ||||
| <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/maven-v4_0_0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
|  | ||||
|     <parent> | ||||
|         <groupId>com.iluwatar</groupId> | ||||
|         <artifactId>naked-objects</artifactId> | ||||
|         <version>1.0-SNAPSHOT</version> | ||||
|     </parent> | ||||
| 	<parent> | ||||
| 		<groupId>com.iluwatar</groupId> | ||||
| 		<artifactId>naked-objects</artifactId> | ||||
| 		<version>1.1.0</version> | ||||
| 	</parent> | ||||
|  | ||||
|     <artifactId>naked-objects-fixture</artifactId> | ||||
|     <name>Simple App Fixtures</name> | ||||
| 	<artifactId>naked-objects-fixture</artifactId> | ||||
|  | ||||
|     <dependencies> | ||||
|         <dependency> | ||||
|             <groupId>${project.groupId}</groupId> | ||||
|             <artifactId>naked-objects-dom</artifactId> | ||||
|         </dependency> | ||||
|     </dependencies> | ||||
| 	<dependencies> | ||||
| 		<dependency> | ||||
| 			<groupId>${project.groupId}</groupId> | ||||
| 			<artifactId>naked-objects-dom</artifactId> | ||||
| 		</dependency> | ||||
| 	</dependencies> | ||||
|  | ||||
| </project> | ||||
|   | ||||
| @@ -1,128 +1,100 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!-- | ||||
|   Licensed to the Apache Software Foundation (ASF) under one | ||||
|   or more contributor license agreements.  See the NOTICE file | ||||
|   distributed with this work for additional information | ||||
|   regarding copyright ownership.  The ASF licenses this file | ||||
|   to you under the Apache License, Version 2.0 (the | ||||
|   "License"); you may not use this file except in compliance | ||||
|   with the License.  You may obtain a copy of the License at | ||||
|    | ||||
|          http://www.apache.org/licenses/LICENSE-2.0 | ||||
|           | ||||
|   Unless required by applicable law or agreed to in writing, | ||||
|   software distributed under the License is distributed on an | ||||
|   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||||
|   KIND, either express or implied.  See the License for the | ||||
|   specific language governing permissions and limitations | ||||
|   under the License. | ||||
| --><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/maven-v4_0_0.xsd"> | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
| <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor  | ||||
| 	license agreements. See the NOTICE file distributed with this work for additional  | ||||
| 	information regarding copyright ownership. The ASF licenses this file to  | ||||
| 	you under the Apache License, Version 2.0 (the "License"); you may not use  | ||||
| 	this file except in compliance with the License. You may obtain a copy of  | ||||
| 	the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required  | ||||
| 	by applicable law or agreed to in writing, software distributed under the  | ||||
| 	License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS  | ||||
| 	OF ANY KIND, either express or implied. See the License for the specific  | ||||
| 	language governing permissions and limitations under the License. --> | ||||
| <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/maven-v4_0_0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
|  | ||||
|     <parent> | ||||
|         <groupId>com.iluwatar</groupId> | ||||
|         <artifactId>naked-objects</artifactId> | ||||
|         <version>1.0-SNAPSHOT</version> | ||||
|     </parent> | ||||
| 	<parent> | ||||
| 		<groupId>com.iluwatar</groupId> | ||||
| 		<artifactId>naked-objects</artifactId> | ||||
| 		<version>1.1.0</version> | ||||
| 	</parent> | ||||
|  | ||||
|     <artifactId>naked-objects-integtests</artifactId> | ||||
|     <name>Simple App Integration Tests</name> | ||||
| 	<artifactId>naked-objects-integtests</artifactId> | ||||
|  | ||||
|     <build> | ||||
|         <testResources> | ||||
|             <testResource> | ||||
|                 <directory>src/test/resources</directory> | ||||
|             </testResource> | ||||
|             <testResource> | ||||
|                 <directory>src/test/java</directory> | ||||
|                 <includes> | ||||
|                     <include>**</include> | ||||
|                 </includes> | ||||
|                 <excludes> | ||||
|                     <exclude>**/*.java</exclude> | ||||
|                 </excludes> | ||||
|             </testResource> | ||||
|         </testResources> | ||||
|     </build> | ||||
|     <dependencies> | ||||
| 	<build> | ||||
| 		<testResources> | ||||
| 			<testResource> | ||||
| 				<directory>src/test/resources</directory> | ||||
| 			</testResource> | ||||
| 			<testResource> | ||||
| 				<directory>src/test/java</directory> | ||||
| 				<includes> | ||||
| 					<include>**</include> | ||||
| 				</includes> | ||||
| 				<excludes> | ||||
| 					<exclude>**/*.java</exclude> | ||||
| 				</excludes> | ||||
| 			</testResource> | ||||
| 		</testResources> | ||||
| 	</build> | ||||
| 	<dependencies> | ||||
|  | ||||
|         <!-- other modules in this project --> | ||||
|         <dependency> | ||||
|             <groupId>${project.groupId}</groupId> | ||||
|             <artifactId>naked-objects-fixture</artifactId> | ||||
|         </dependency> | ||||
| 		<!-- other modules in this project --> | ||||
| 		<dependency> | ||||
| 			<groupId>${project.groupId}</groupId> | ||||
| 			<artifactId>naked-objects-fixture</artifactId> | ||||
| 		</dependency> | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-unittestsupport</artifactId> | ||||
|         </dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-unittestsupport</artifactId> | ||||
| 		</dependency> | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-integtestsupport</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-specsupport</artifactId> | ||||
|         </dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-integtestsupport</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-specsupport</artifactId> | ||||
| 		</dependency> | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>org.hamcrest</groupId> | ||||
|             <artifactId>hamcrest-library</artifactId> | ||||
|         </dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.hamcrest</groupId> | ||||
| 			<artifactId>hamcrest-library</artifactId> | ||||
| 		</dependency> | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-wrapper</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-runtime</artifactId> | ||||
|         </dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-wrapper</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-runtime</artifactId> | ||||
| 		</dependency> | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>org.assertj</groupId> | ||||
|             <artifactId>assertj-core</artifactId> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.assertj</groupId> | ||||
| 			<artifactId>assertj-core</artifactId> | ||||
| 			<scope>test</scope> | ||||
| 		</dependency> | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>org.hsqldb</groupId> | ||||
|             <artifactId>hsqldb</artifactId> | ||||
|         </dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.hsqldb</groupId> | ||||
| 			<artifactId>hsqldb</artifactId> | ||||
| 		</dependency> | ||||
|  | ||||
|         <!--  | ||||
|         uncomment to enable enhanced cucumber-jvm reporting | ||||
|         http://www.masterthought.net/section/cucumber-reporting | ||||
|         <dependency>   | ||||
|             <groupId>com.googlecode.totallylazy</groupId>   | ||||
|             <artifactId>totallylazy</artifactId>   | ||||
|             <version>991</version>   | ||||
|         </dependency> | ||||
| 		<!-- uncomment to enable enhanced cucumber-jvm reporting http://www.masterthought.net/section/cucumber-reporting  | ||||
| 			<dependency> <groupId>com.googlecode.totallylazy</groupId> <artifactId>totallylazy</artifactId>  | ||||
| 			<version>991</version> </dependency> <dependency> <groupId>net.masterthought</groupId>  | ||||
| 			<artifactId>cucumber-reporting</artifactId> <version>0.0.21</version> </dependency>  | ||||
| 			<dependency> <groupId>net.masterthought</groupId> <artifactId>maven-cucumber-reporting</artifactId>  | ||||
| 			<version>0.0.4</version> </dependency> --> | ||||
| 	</dependencies> | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>net.masterthought</groupId> | ||||
|             <artifactId>cucumber-reporting</artifactId> | ||||
|             <version>0.0.21</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>net.masterthought</groupId> | ||||
|             <artifactId>maven-cucumber-reporting</artifactId> | ||||
|             <version>0.0.4</version> | ||||
|         </dependency>   | ||||
|         --> | ||||
|     </dependencies> | ||||
|  | ||||
|     <!--  | ||||
|     uncomment for enhanced cucumber-jvm reporting | ||||
|     http://www.masterthought.net/section/cucumber-reporting | ||||
|     <repositories>   | ||||
|         <repository>   | ||||
|             <id>repo.bodar.com</id>   | ||||
|             <url>http://repo.bodar.com</url>   | ||||
|         </repository>   | ||||
|     </repositories>   | ||||
|      --> | ||||
| 	<!-- uncomment for enhanced cucumber-jvm reporting http://www.masterthought.net/section/cucumber-reporting  | ||||
| 		<repositories> <repository> <id>repo.bodar.com</id> <url>http://repo.bodar.com</url>  | ||||
| 		</repository> </repositories> --> | ||||
|  | ||||
|  | ||||
| </project> | ||||
|   | ||||
| @@ -1,400 +1,399 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!-- | ||||
|   Licensed to the Apache Software Foundation (ASF) under one | ||||
|   or more contributor license agreements.  See the NOTICE file | ||||
|   distributed with this work for additional information | ||||
|   regarding copyright ownership.  The ASF licenses this file | ||||
|   to you under the Apache License, Version 2.0 (the | ||||
|   "License"); you may not use this file except in compliance | ||||
|   with the License.  You may obtain a copy of the License at | ||||
|    | ||||
|          http://www.apache.org/licenses/LICENSE-2.0 | ||||
|           | ||||
|   Unless required by applicable law or agreed to in writing, | ||||
|   software distributed under the License is distributed on an | ||||
|   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||||
|   KIND, either express or implied.  See the License for the | ||||
|   specific language governing permissions and limitations | ||||
|   under the License. | ||||
| --><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/maven-v4_0_0.xsd"> | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
|     <parent> | ||||
|     <artifactId>java-design-patterns</artifactId> | ||||
|     <groupId>com.iluwatar</groupId> | ||||
|     <version>1.1.0</version> | ||||
|   </parent> | ||||
| <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor  | ||||
| 	license agreements. See the NOTICE file distributed with this work for additional  | ||||
| 	information regarding copyright ownership. The ASF licenses this file to  | ||||
| 	you under the Apache License, Version 2.0 (the "License"); you may not use  | ||||
| 	this file except in compliance with the License. You may obtain a copy of  | ||||
| 	the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required  | ||||
| 	by applicable law or agreed to in writing, software distributed under the  | ||||
| 	License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS  | ||||
| 	OF ANY KIND, either express or implied. See the License for the specific  | ||||
| 	language governing permissions and limitations under the License. --> | ||||
| <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/maven-v4_0_0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<parent> | ||||
| 		<artifactId>java-design-patterns</artifactId> | ||||
| 		<groupId>com.iluwatar</groupId> | ||||
| 		<version>1.1.0</version> | ||||
| 	</parent> | ||||
|  | ||||
|     <groupId>com.iluwatar</groupId> | ||||
|     <artifactId>naked-objects</artifactId> | ||||
|     <version>1.0-SNAPSHOT</version> | ||||
| 	<artifactId>naked-objects</artifactId> | ||||
|  | ||||
|     <name>Simple App</name> | ||||
| 	<packaging>pom</packaging> | ||||
|  | ||||
|     <packaging>pom</packaging> | ||||
| 	<prerequisites> | ||||
| 		<maven>3.0.4</maven> | ||||
| 	</prerequisites> | ||||
|  | ||||
|     <prerequisites> | ||||
|         <maven>3.0.4</maven> | ||||
|     </prerequisites> | ||||
| 	<properties> | ||||
| 		<isis.version>1.9.0-SNAPSHOT</isis.version> | ||||
|  | ||||
|     <properties> | ||||
|         <isis.version>1.9.0-SNAPSHOT</isis.version> | ||||
| 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||||
| 		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||||
| 		<assertj-core.version>2.0.0</assertj-core.version> | ||||
| 	</properties> | ||||
|  | ||||
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||||
|         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||||
|         <assertj-core.version>2.0.0</assertj-core.version> | ||||
|     </properties> | ||||
| 	<repositories> | ||||
| 		<repository> | ||||
| 			<id>apache.snapshots</id> | ||||
| 			<name>Apache Snapshots</name> | ||||
| 			<url>https://repository.apache.org/content/repositories/snapshots/</url> | ||||
| 			<releases> | ||||
| 				<enabled>false</enabled> | ||||
| 			</releases> | ||||
| 			<snapshots> | ||||
| 			</snapshots> | ||||
| 		</repository> | ||||
| 		<repository> | ||||
| 			<id>Cloudbees snapshots</id> | ||||
| 			<url>http://repository-estatio.forge.cloudbees.com/snapshot/</url> | ||||
| 			<snapshots> | ||||
| 			</snapshots> | ||||
| 			<releases> | ||||
| 				<enabled>false</enabled> | ||||
| 			</releases> | ||||
| 		</repository> | ||||
| 	</repositories> | ||||
|  | ||||
|     <repositories> | ||||
|         <repository> | ||||
|             <id>apache.snapshots</id> | ||||
|             <name>Apache Snapshots</name> | ||||
|             <url>https://repository.apache.org/content/repositories/snapshots/</url> | ||||
|             <releases> | ||||
|                 <enabled>false</enabled> | ||||
|             </releases> | ||||
|             <snapshots> | ||||
|             </snapshots> | ||||
|         </repository> | ||||
|         <repository> | ||||
|             <id>Cloudbees snapshots</id> | ||||
|             <url>http://repository-estatio.forge.cloudbees.com/snapshot/</url> | ||||
|             <snapshots> | ||||
|             </snapshots> | ||||
|             <releases> | ||||
|                 <enabled>false</enabled> | ||||
|             </releases> | ||||
|         </repository> | ||||
|     </repositories> | ||||
| 	<build> | ||||
| 		<pluginManagement> | ||||
| 			<plugins> | ||||
| 				<plugin> | ||||
| 					<groupId>org.apache.maven.plugins</groupId> | ||||
| 					<artifactId>maven-enforcer-plugin</artifactId> | ||||
| 					<version>1.3.1</version> | ||||
| 					<configuration> | ||||
| 						<rules> | ||||
| 							<requireMavenVersion> | ||||
| 								<version>[3.2.1,)</version> | ||||
| 							</requireMavenVersion> | ||||
| 							<requireJavaVersion> | ||||
| 								<version>[1.8.0,)</version> | ||||
| 							</requireJavaVersion> | ||||
| 							<requirePluginVersions> | ||||
| 								<message>All plugin versions must be | ||||
| 									defined!</message> | ||||
| 								<banLatest>true</banLatest> | ||||
| 								<banRelease>true</banRelease> | ||||
| 							</requirePluginVersions> | ||||
| 							<DependencyConvergence /> | ||||
| 						</rules> | ||||
| 					</configuration> | ||||
| 					<executions> | ||||
| 						<execution> | ||||
| 							<id>validate-enforce</id> | ||||
| 							<phase>validate</phase> | ||||
| 							<goals> | ||||
| 								<goal>enforce</goal> | ||||
| 							</goals> | ||||
| 						</execution> | ||||
| 					</executions> | ||||
| 				</plugin> | ||||
| 				<plugin> | ||||
| 					<groupId>org.apache.maven.plugins</groupId> | ||||
| 					<artifactId>maven-compiler-plugin</artifactId> | ||||
| 					<version>3.1</version> | ||||
| 					<configuration> | ||||
| 						<source>1.8</source> | ||||
| 						<target>1.8</target> | ||||
| 						<compilerArgument>-parameters</compilerArgument> | ||||
| 					</configuration> | ||||
| 					<executions> | ||||
| 						<execution> | ||||
| 							<id>source</id> | ||||
| 							<phase>compile</phase> | ||||
| 						</execution> | ||||
| 						<execution> | ||||
| 							<id>test</id> | ||||
| 							<phase>test-compile</phase> | ||||
| 						</execution> | ||||
| 					</executions> | ||||
| 				</plugin> | ||||
|  | ||||
|     <build> | ||||
|         <pluginManagement> | ||||
|             <plugins> | ||||
|                 <plugin> | ||||
|                     <groupId>org.apache.maven.plugins</groupId> | ||||
|                     <artifactId>maven-enforcer-plugin</artifactId> | ||||
|                     <version>1.3.1</version> | ||||
|                     <configuration> | ||||
|                         <rules> | ||||
|                             <requireMavenVersion> | ||||
|                                 <version>[3.2.1,)</version> | ||||
|                             </requireMavenVersion> | ||||
|                             <requireJavaVersion> | ||||
|                                 <version>[1.8.0,)</version> | ||||
|                             </requireJavaVersion> | ||||
|                             <requirePluginVersions> | ||||
|                                 <message>All plugin versions must be | ||||
|                                     defined!</message> | ||||
|                                 <banLatest>true</banLatest> | ||||
|                                 <banRelease>true</banRelease> | ||||
|                             </requirePluginVersions> | ||||
|                             <DependencyConvergence/> | ||||
|                         </rules> | ||||
|                     </configuration> | ||||
|                     <executions> | ||||
|                         <execution> | ||||
|                             <id>validate-enforce</id> | ||||
|                             <phase>validate</phase> | ||||
|                             <goals> | ||||
|                                 <goal>enforce</goal> | ||||
|                             </goals> | ||||
|                         </execution> | ||||
|                     </executions> | ||||
|                 </plugin> | ||||
|                 <plugin> | ||||
|                     <groupId>org.apache.maven.plugins</groupId> | ||||
|                     <artifactId>maven-compiler-plugin</artifactId> | ||||
|                     <version>3.1</version> | ||||
|                     <configuration> | ||||
|                         <source>1.8</source> | ||||
|                         <target>1.8</target> | ||||
|                         <compilerArgument>-parameters</compilerArgument> | ||||
|                     </configuration> | ||||
|                     <executions> | ||||
|                         <execution> | ||||
|                             <id>source</id> | ||||
|                             <phase>compile</phase> | ||||
|                         </execution> | ||||
|                         <execution> | ||||
|                             <id>test</id> | ||||
|                             <phase>test-compile</phase> | ||||
|                         </execution> | ||||
|                     </executions> | ||||
|                 </plugin> | ||||
| 				<plugin> | ||||
| 					<groupId>org.apache.maven.plugins</groupId> | ||||
| 					<artifactId>maven-surefire-plugin</artifactId> | ||||
| 					<version>2.16</version> | ||||
| 					<configuration> | ||||
| 						<includes> | ||||
| 							<include>**/*Test.java</include> | ||||
| 							<include>**/*Test$*.java</include> | ||||
| 							<include>**/*Test_*.java</include> | ||||
| 							<include>**/*Spec*.java</include> | ||||
| 						</includes> | ||||
| 						<excludes> | ||||
| 							<exclude>**/Test*.java</exclude> | ||||
| 							<exclude>**/*ForTesting.java</exclude> | ||||
| 							<exclude>**/*Abstract*.java</exclude> | ||||
| 						</excludes> | ||||
| 						<useFile>true</useFile> | ||||
| 						<printSummary>true</printSummary> | ||||
| 						<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory> | ||||
| 					</configuration> | ||||
| 				</plugin> | ||||
|  | ||||
|                 <plugin> | ||||
|                     <groupId>org.apache.maven.plugins</groupId> | ||||
|                     <artifactId>maven-surefire-plugin</artifactId> | ||||
|                     <version>2.16</version> | ||||
|                     <configuration> | ||||
|                         <includes> | ||||
|                             <include>**/*Test.java</include> | ||||
|                             <include>**/*Test$*.java</include> | ||||
|                             <include>**/*Test_*.java</include> | ||||
|                             <include>**/*Spec*.java</include> | ||||
|                         </includes> | ||||
|                         <excludes> | ||||
|                             <exclude>**/Test*.java</exclude> | ||||
|                             <exclude>**/*ForTesting.java</exclude> | ||||
|                             <exclude>**/*Abstract*.java</exclude> | ||||
|                         </excludes> | ||||
|                         <useFile>true</useFile> | ||||
|                         <printSummary>true</printSummary> | ||||
|                         <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory> | ||||
|                     </configuration> | ||||
|                 </plugin> | ||||
| 				<plugin> | ||||
| 					<groupId>org.apache.maven.plugins</groupId> | ||||
| 					<artifactId>maven-surefire-report-plugin</artifactId> | ||||
| 					<version>2.16</version> | ||||
| 					<configuration> | ||||
| 						<showSuccess>false</showSuccess> | ||||
| 					</configuration> | ||||
| 					<executions> | ||||
| 						<execution> | ||||
| 							<phase>test</phase> | ||||
| 						</execution> | ||||
| 					</executions> | ||||
| 				</plugin> | ||||
|  | ||||
|                 <plugin> | ||||
|                     <groupId>org.apache.maven.plugins</groupId> | ||||
|                     <artifactId>maven-surefire-report-plugin</artifactId> | ||||
|                     <version>2.16</version> | ||||
|                     <configuration> | ||||
|                         <showSuccess>false</showSuccess> | ||||
|                     </configuration> | ||||
|                     <executions> | ||||
|                         <execution> | ||||
|                             <phase>test</phase> | ||||
|                         </execution> | ||||
|                     </executions> | ||||
|                 </plugin> | ||||
| 				<plugin> | ||||
| 					<artifactId>maven-clean-plugin</artifactId> | ||||
| 					<version>2.5</version> | ||||
| 				</plugin> | ||||
| 				<plugin> | ||||
| 					<artifactId>maven-resources-plugin</artifactId> | ||||
| 					<version>2.6</version> | ||||
| 				</plugin> | ||||
| 				<plugin> | ||||
| 					<artifactId>maven-jar-plugin</artifactId> | ||||
| 					<version>2.4</version> | ||||
| 				</plugin> | ||||
| 				<plugin> | ||||
| 					<artifactId>maven-install-plugin</artifactId> | ||||
| 					<version>2.5.1</version> | ||||
| 				</plugin> | ||||
| 				<plugin> | ||||
| 					<artifactId>maven-deploy-plugin</artifactId> | ||||
| 					<version>2.8.1</version> | ||||
| 				</plugin> | ||||
| 				<plugin> | ||||
| 					<artifactId>maven-site-plugin</artifactId> | ||||
| 					<version>3.3</version> | ||||
| 				</plugin> | ||||
| 				<plugin> | ||||
| 					<artifactId>maven-war-plugin</artifactId> | ||||
| 					<version>2.4</version> | ||||
| 				</plugin> | ||||
|  | ||||
|                 <plugin> | ||||
|                     <artifactId>maven-clean-plugin</artifactId> | ||||
|                     <version>2.5</version> | ||||
|                 </plugin> | ||||
|                 <plugin> | ||||
|                     <artifactId>maven-resources-plugin</artifactId> | ||||
|                     <version>2.6</version> | ||||
|                 </plugin> | ||||
|                 <plugin> | ||||
|                     <artifactId>maven-jar-plugin</artifactId> | ||||
|                     <version>2.4</version> | ||||
|                 </plugin> | ||||
|                 <plugin> | ||||
|                     <artifactId>maven-install-plugin</artifactId> | ||||
|                     <version>2.5.1</version> | ||||
|                 </plugin> | ||||
|                 <plugin> | ||||
|                     <artifactId>maven-deploy-plugin</artifactId> | ||||
|                     <version>2.8.1</version> | ||||
|                 </plugin> | ||||
|                 <plugin> | ||||
|                     <artifactId>maven-site-plugin</artifactId> | ||||
|                     <version>3.3</version> | ||||
|                 </plugin> | ||||
|                 <plugin> | ||||
|                     <artifactId>maven-war-plugin</artifactId> | ||||
|                     <version>2.4</version> | ||||
|                 </plugin> | ||||
| 				<plugin> | ||||
| 					<groupId>org.mortbay.jetty</groupId> | ||||
| 					<artifactId>maven-jetty-plugin</artifactId> | ||||
| 					<version>6.1.26</version> | ||||
| 				</plugin> | ||||
|  | ||||
|                 <plugin> | ||||
|                     <groupId>org.mortbay.jetty</groupId> | ||||
|                     <artifactId>maven-jetty-plugin</artifactId> | ||||
|                     <version>6.1.26</version> | ||||
|                 </plugin> | ||||
| 				<plugin> | ||||
| 					<groupId>org.apache.maven.plugins</groupId> | ||||
| 					<artifactId>maven-shade-plugin</artifactId> | ||||
| 					<version>2.2</version> | ||||
| 				</plugin> | ||||
|  | ||||
|                 <plugin> | ||||
|                     <groupId>org.apache.maven.plugins</groupId> | ||||
|                     <artifactId>maven-shade-plugin</artifactId> | ||||
|                     <version>2.2</version> | ||||
|                 </plugin> | ||||
| 				<plugin> | ||||
| 					<groupId>org.apache.maven.plugins</groupId> | ||||
| 					<artifactId>maven-antrun-plugin</artifactId> | ||||
| 					<version>1.7</version> | ||||
| 					<executions> | ||||
| 						<execution> | ||||
| 							<goals> | ||||
| 								<goal>run</goal> | ||||
| 							</goals> | ||||
| 						</execution> | ||||
| 					</executions> | ||||
| 				</plugin> | ||||
| 				<!-- http://simplericity.com/2009/11/10/1257880778509.html --> | ||||
| 				<plugin> | ||||
| 					<groupId>org.simplericity.jettyconsole</groupId> | ||||
| 					<artifactId>jetty-console-maven-plugin</artifactId> | ||||
| 					<version>1.56</version> | ||||
| 				</plugin> | ||||
|  | ||||
|                 <plugin> | ||||
|                     <groupId>org.apache.maven.plugins</groupId> | ||||
|                     <artifactId>maven-antrun-plugin</artifactId> | ||||
|                     <version>1.7</version> | ||||
|                     <executions> | ||||
|                         <execution> | ||||
|                             <goals> | ||||
|                                 <goal>run</goal> | ||||
|                             </goals> | ||||
|                         </execution> | ||||
|                     </executions> | ||||
|                 </plugin> | ||||
|                 <!-- http://simplericity.com/2009/11/10/1257880778509.html --> | ||||
|                 <plugin> | ||||
|                     <groupId>org.simplericity.jettyconsole</groupId> | ||||
|                     <artifactId>jetty-console-maven-plugin</artifactId> | ||||
|                     <version>1.56</version> | ||||
|                 </plugin> | ||||
| 				<!-- Apache Release Audit Tool --> | ||||
| 				<plugin> | ||||
| 					<groupId>org.apache.rat</groupId> | ||||
| 					<artifactId>apache-rat-plugin</artifactId> | ||||
| 					<version>0.10</version> | ||||
| 					<configuration> | ||||
| 						<addDefaultLicenseMatchers>true</addDefaultLicenseMatchers> | ||||
| 						<excludeSubProjects>true</excludeSubProjects> | ||||
| 						<excludes> | ||||
| 							<exclude>**/target/**</exclude> | ||||
| 							<exclude>**/target-ide/**</exclude> | ||||
|  | ||||
|                 <!-- Apache Release Audit Tool --> | ||||
|                 <plugin> | ||||
|                     <groupId>org.apache.rat</groupId> | ||||
|                     <artifactId>apache-rat-plugin</artifactId> | ||||
|                     <version>0.10</version> | ||||
|                     <configuration> | ||||
|                         <addDefaultLicenseMatchers>true</addDefaultLicenseMatchers> | ||||
|                         <excludeSubProjects>true</excludeSubProjects> | ||||
|                         <excludes> | ||||
|                             <exclude>**/target/**</exclude> | ||||
|                             <exclude>**/target-ide/**</exclude> | ||||
| 							<exclude>**/*.project</exclude> | ||||
| 							<exclude>**/.classpath</exclude> | ||||
| 							<exclude>**/.settings/**</exclude> | ||||
| 							<exclude>**/*.launch</exclude> | ||||
| 							<exclude>**/ide/eclipse/launch/**</exclude> | ||||
| 							<exclude>**/ide/intellij/launch/**</exclude> | ||||
| 							<exclude>src/site/resources/ide/eclipse/**</exclude> | ||||
|  | ||||
|                             <exclude>**/*.project</exclude> | ||||
|                             <exclude>**/.classpath</exclude> | ||||
|                             <exclude>**/.settings/**</exclude> | ||||
|                             <exclude>**/*.launch</exclude> | ||||
|                             <exclude>**/ide/eclipse/launch/**</exclude> | ||||
|                             <exclude>**/ide/intellij/launch/**</exclude> | ||||
|                             <exclude>src/site/resources/ide/eclipse/**</exclude> | ||||
| 							<exclude>**/rebel.xml</exclude> | ||||
| 							<exclude>**/*.gitignore</exclude> | ||||
| 							<exclude>**/*.log</exclude> | ||||
| 							<exclude>**/*.pdn</exclude> | ||||
| 							<exclude>**/*.svg</exclude> | ||||
| 							<exclude>**/*.json</exclude> | ||||
| 							<exclude>**/*.min.js</exclude> | ||||
| 							<exclude>**/*.js</exclude> | ||||
|  | ||||
|                             <exclude>**/rebel.xml</exclude> | ||||
|                             <exclude>**/*.gitignore</exclude> | ||||
|                             <exclude>**/*.log</exclude> | ||||
|                             <exclude>**/*.pdn</exclude> | ||||
|                             <exclude>**/*.svg</exclude> | ||||
|                             <exclude>**/*.json</exclude> | ||||
|                             <exclude>**/*.min.js</exclude> | ||||
|                             <exclude>**/*.js</exclude> | ||||
| 							<exclude>**/translations.pot</exclude> | ||||
| 							<exclude>**/translations*.po</exclude> | ||||
| 						</excludes> | ||||
| 						<licenses> | ||||
| 							<license | ||||
| 								implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> | ||||
| 								<licenseFamilyCategory>AL2</licenseFamilyCategory> | ||||
| 								<licenseFamilyName>Apache License 2.0</licenseFamilyName> | ||||
| 								<notes /> | ||||
| 								<patterns> | ||||
| 									<pattern>Licensed to the Apache Software Foundation (ASF) under | ||||
| 										one</pattern> | ||||
| 								</patterns> | ||||
| 							</license> | ||||
| 							<license | ||||
| 								implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> | ||||
| 								<licenseFamilyCategory>JQRY</licenseFamilyCategory> | ||||
| 								<licenseFamilyName>MIT</licenseFamilyName> | ||||
| 								<notes /> | ||||
| 								<patterns> | ||||
| 									<pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern> | ||||
| 								</patterns> | ||||
| 							</license> | ||||
| 							<license | ||||
| 								implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> | ||||
| 								<licenseFamilyCategory>JMOCK</licenseFamilyCategory> | ||||
| 								<licenseFamilyName>JMock</licenseFamilyName> | ||||
| 								<notes /> | ||||
| 								<patterns> | ||||
| 									<pattern>Copyright (c) 2000-2007, jMock.org</pattern> | ||||
| 								</patterns> | ||||
| 							</license> | ||||
| 							<license | ||||
| 								implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> | ||||
| 								<licenseFamilyCategory>DOCBK</licenseFamilyCategory> | ||||
| 								<licenseFamilyName>DocBook 4.5</licenseFamilyName> | ||||
| 								<notes /> | ||||
| 								<patterns> | ||||
| 									<pattern>Permission to copy in any form is granted for use</pattern> | ||||
| 									<pattern>Permission to use, copy, modify and distribute the | ||||
| 										DocBook DTD</pattern> | ||||
| 									<pattern>is hereby granted in perpetuity, provided that the | ||||
| 										above copyright</pattern> | ||||
| 									<pattern>This is the catalog data file for DocBook XML V4.5. It | ||||
| 										is provided as</pattern> | ||||
| 									<pattern>XML Catalog data for DocBook XML V4.5</pattern> | ||||
| 									<pattern>DocBook additional general entities V4.5</pattern> | ||||
| 									<pattern>XML EXCHANGE TABLE MODEL DECLARATION MODULE</pattern> | ||||
| 								</patterns> | ||||
| 							</license> | ||||
| 							<license | ||||
| 								implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> | ||||
| 								<licenseFamilyCategory>W3C</licenseFamilyCategory> | ||||
| 								<licenseFamilyName>XHTML</licenseFamilyName> | ||||
| 								<notes /> | ||||
| 								<patterns> | ||||
| 									<pattern>Copyright (c) 1998-2002 W3C (MIT, INRIA, Keio),</pattern> | ||||
| 								</patterns> | ||||
| 							</license> | ||||
| 						</licenses> | ||||
| 						<licenseFamilies> | ||||
| 							<licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> | ||||
| 								<familyName>Apache License 2.0</familyName> | ||||
| 							</licenseFamily> | ||||
| 							<licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> | ||||
| 								<familyName>MIT</familyName> | ||||
| 							</licenseFamily> | ||||
| 							<licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> | ||||
| 								<familyName>JMock</familyName> | ||||
| 							</licenseFamily> | ||||
| 							<licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> | ||||
| 								<familyName>DocBook 4.5</familyName> | ||||
| 							</licenseFamily> | ||||
| 							<licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> | ||||
| 								<familyName>XHTML</familyName> | ||||
| 							</licenseFamily> | ||||
| 						</licenseFamilies> | ||||
| 					</configuration> | ||||
| 				</plugin> | ||||
| 			</plugins> | ||||
| 		</pluginManagement> | ||||
| 		<plugins> | ||||
| 			<plugin> | ||||
| 				<groupId>org.apache.maven.plugins</groupId> | ||||
| 				<artifactId>maven-compiler-plugin</artifactId> | ||||
| 			</plugin> | ||||
| 			<plugin> | ||||
| 				<groupId>org.apache.maven.plugins</groupId> | ||||
| 				<artifactId>maven-surefire-report-plugin</artifactId> | ||||
| 			</plugin> | ||||
| 		</plugins> | ||||
| 	</build> | ||||
|  | ||||
|                             <exclude>**/translations.pot</exclude> | ||||
|                             <exclude>**/translations*.po</exclude> | ||||
|                         </excludes> | ||||
|                         <licenses> | ||||
|                             <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> | ||||
|                                 <licenseFamilyCategory>AL2</licenseFamilyCategory> | ||||
|                                 <licenseFamilyName>Apache License 2.0</licenseFamilyName> | ||||
|                                 <notes/> | ||||
|                                 <patterns> | ||||
|                                     <pattern>Licensed to the Apache Software Foundation (ASF) under one</pattern> | ||||
|                                 </patterns> | ||||
|                             </license> | ||||
|                             <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> | ||||
|                                 <licenseFamilyCategory>JQRY</licenseFamilyCategory> | ||||
|                                 <licenseFamilyName>MIT</licenseFamilyName> | ||||
|                                 <notes/> | ||||
|                                 <patterns> | ||||
|                                     <pattern>Dual licensed under the MIT or GPL Version 2 licenses.</pattern> | ||||
|                                 </patterns> | ||||
|                             </license> | ||||
|                             <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> | ||||
|                                 <licenseFamilyCategory>JMOCK</licenseFamilyCategory> | ||||
|                                 <licenseFamilyName>JMock</licenseFamilyName> | ||||
|                                 <notes/> | ||||
|                                 <patterns> | ||||
|                                     <pattern>Copyright (c) 2000-2007, jMock.org</pattern> | ||||
|                                 </patterns> | ||||
|                             </license> | ||||
|                             <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> | ||||
|                                 <licenseFamilyCategory>DOCBK</licenseFamilyCategory> | ||||
|                                 <licenseFamilyName>DocBook 4.5</licenseFamilyName> | ||||
|                                 <notes/> | ||||
|                                 <patterns> | ||||
|                                     <pattern>Permission to copy in any form is granted for use</pattern> | ||||
|                                     <pattern>Permission to use, copy, modify and distribute the DocBook DTD</pattern> | ||||
|                                     <pattern>is hereby granted in perpetuity, provided that the above copyright</pattern> | ||||
|                                     <pattern>This is the catalog data file for DocBook XML V4.5. It is provided as</pattern> | ||||
|                                     <pattern>XML Catalog data for DocBook XML V4.5</pattern> | ||||
|                                     <pattern>DocBook additional general entities V4.5</pattern> | ||||
|                                     <pattern>XML EXCHANGE TABLE MODEL DECLARATION MODULE</pattern> | ||||
|                                 </patterns> | ||||
|                             </license> | ||||
|                             <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> | ||||
|                                 <licenseFamilyCategory>W3C</licenseFamilyCategory> | ||||
|                                 <licenseFamilyName>XHTML</licenseFamilyName> | ||||
|                                 <notes/> | ||||
|                                 <patterns> | ||||
|                                     <pattern>Copyright (c) 1998-2002 W3C (MIT, INRIA, Keio),</pattern> | ||||
|                                 </patterns> | ||||
|                             </license> | ||||
|                         </licenses> | ||||
|                         <licenseFamilies> | ||||
|                             <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> | ||||
|                                 <familyName>Apache License 2.0</familyName> | ||||
|                             </licenseFamily> | ||||
|                             <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> | ||||
|                                 <familyName>MIT</familyName> | ||||
|                             </licenseFamily> | ||||
|                             <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> | ||||
|                                 <familyName>JMock</familyName> | ||||
|                             </licenseFamily> | ||||
|                             <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> | ||||
|                                 <familyName>DocBook 4.5</familyName> | ||||
|                             </licenseFamily> | ||||
|                             <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> | ||||
|                                 <familyName>XHTML</familyName> | ||||
|                             </licenseFamily> | ||||
|                         </licenseFamilies> | ||||
|                     </configuration> | ||||
|                 </plugin> | ||||
|             </plugins> | ||||
|         </pluginManagement> | ||||
|         <plugins> | ||||
|             <plugin> | ||||
|                 <groupId>org.apache.maven.plugins</groupId> | ||||
|                 <artifactId>maven-compiler-plugin</artifactId> | ||||
|             </plugin> | ||||
|             <plugin> | ||||
|                 <groupId>org.apache.maven.plugins</groupId> | ||||
|                 <artifactId>maven-surefire-report-plugin</artifactId> | ||||
|             </plugin> | ||||
|         </plugins> | ||||
|     </build> | ||||
| 	<dependencyManagement> | ||||
| 		<dependencies> | ||||
|  | ||||
|     <dependencyManagement> | ||||
|         <dependencies> | ||||
| 			<dependency> | ||||
| 				<groupId>org.apache.isis.core</groupId> | ||||
| 				<artifactId>isis</artifactId> | ||||
| 				<version>${isis.version}</version> | ||||
| 				<type>pom</type> | ||||
| 				<scope>import</scope> | ||||
| 			</dependency> | ||||
|  | ||||
|             <dependency> | ||||
|                 <groupId>org.apache.isis.core</groupId> | ||||
|                 <artifactId>isis</artifactId> | ||||
|                 <version>${isis.version}</version> | ||||
|                 <type>pom</type> | ||||
|                 <scope>import</scope> | ||||
|             </dependency> | ||||
| 			<dependency> | ||||
| 				<groupId>org.apache.isis.viewer</groupId> | ||||
| 				<artifactId>isis-viewer-wicket</artifactId> | ||||
| 				<version>${isis.version}</version> | ||||
| 				<type>pom</type> | ||||
| 				<scope>import</scope> | ||||
| 			</dependency> | ||||
|  | ||||
|             <dependency> | ||||
|                 <groupId>org.apache.isis.viewer</groupId> | ||||
|                 <artifactId>isis-viewer-wicket</artifactId> | ||||
|                 <version>${isis.version}</version> | ||||
|                 <type>pom</type> | ||||
|                 <scope>import</scope> | ||||
|             </dependency> | ||||
|  | ||||
|             <dependency> | ||||
|                 <groupId>org.assertj</groupId> | ||||
|                 <artifactId>assertj-core</artifactId> | ||||
|                 <version>${assertj-core.version}</version> | ||||
|             </dependency> | ||||
| 			<dependency> | ||||
| 				<groupId>org.assertj</groupId> | ||||
| 				<artifactId>assertj-core</artifactId> | ||||
| 				<version>${assertj-core.version}</version> | ||||
| 			</dependency> | ||||
|  | ||||
|  | ||||
|             <!-- this project's own modules --> | ||||
|             <dependency> | ||||
|                 <groupId>${project.groupId}</groupId> | ||||
|                 <artifactId>naked-objects-dom</artifactId> | ||||
|                 <version>1.0-SNAPSHOT</version> | ||||
|             </dependency> | ||||
|             <dependency> | ||||
|                 <groupId>${project.groupId}</groupId> | ||||
|                 <artifactId>naked-objects-fixture</artifactId> | ||||
|                 <version>1.0-SNAPSHOT</version> | ||||
|             </dependency> | ||||
|             <dependency> | ||||
|                 <groupId>${project.groupId}</groupId> | ||||
|                 <artifactId>naked-objects-webapp</artifactId> | ||||
|                 <version>1.0-SNAPSHOT</version> | ||||
|             </dependency> | ||||
| 			<!-- this project's own modules --> | ||||
| 			<dependency> | ||||
| 				<groupId>${project.groupId}</groupId> | ||||
| 				<artifactId>naked-objects-dom</artifactId> | ||||
| 				<version>1.1.0</version> | ||||
| 			</dependency> | ||||
| 			<dependency> | ||||
| 				<groupId>${project.groupId}</groupId> | ||||
| 				<artifactId>naked-objects-fixture</artifactId> | ||||
| 				<version>1.1.0</version> | ||||
| 			</dependency> | ||||
| 			<dependency> | ||||
| 				<groupId>${project.groupId}</groupId> | ||||
| 				<artifactId>naked-objects-webapp</artifactId> | ||||
| 				<version>1.1.0</version> | ||||
| 			</dependency> | ||||
|  | ||||
|         </dependencies> | ||||
|     </dependencyManagement> | ||||
| 		</dependencies> | ||||
| 	</dependencyManagement> | ||||
|  | ||||
|  | ||||
|     <profiles> | ||||
|         <profile> | ||||
|             <id>m2e</id> | ||||
|             <activation> | ||||
|                 <property> | ||||
|                     <name>m2e.version</name> | ||||
|                 </property> | ||||
|             </activation> | ||||
|             <build> | ||||
|                 <directory>target-ide</directory> | ||||
|             </build> | ||||
|         </profile> | ||||
|     </profiles> | ||||
| 	<profiles> | ||||
| 		<profile> | ||||
| 			<id>m2e</id> | ||||
| 			<activation> | ||||
| 				<property> | ||||
| 					<name>m2e.version</name> | ||||
| 				</property> | ||||
| 			</activation> | ||||
| 			<build> | ||||
| 				<directory>target-ide</directory> | ||||
| 			</build> | ||||
| 		</profile> | ||||
| 	</profiles> | ||||
|  | ||||
|   <modules> | ||||
|     <module>dom</module> | ||||
|     <module>fixture</module> | ||||
|     <module>integtests</module> | ||||
|     <module>webapp</module> | ||||
|   </modules> | ||||
| 	<modules> | ||||
| 		<module>dom</module> | ||||
| 		<module>fixture</module> | ||||
| 		<module>integtests</module> | ||||
| 		<module>webapp</module> | ||||
| 	</modules> | ||||
| </project> | ||||
| @@ -1,352 +1,324 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!-- | ||||
|   Licensed to the Apache Software Foundation (ASF) under one | ||||
|   or more contributor license agreements.  See the NOTICE file | ||||
|   distributed with this work for additional information | ||||
|   regarding copyright ownership.  The ASF licenses this file | ||||
|   to you under the Apache License, Version 2.0 (the | ||||
|   "License"); you may not use this file except in compliance | ||||
|   with the License.  You may obtain a copy of the License at | ||||
|    | ||||
|          http://www.apache.org/licenses/LICENSE-2.0 | ||||
|           | ||||
|   Unless required by applicable law or agreed to in writing, | ||||
|   software distributed under the License is distributed on an | ||||
|   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||||
|   KIND, either express or implied.  See the License for the | ||||
|   specific language governing permissions and limitations | ||||
|   under the License. | ||||
| --><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/maven-v4_0_0.xsd"> | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
| <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor  | ||||
| 	license agreements. See the NOTICE file distributed with this work for additional  | ||||
| 	information regarding copyright ownership. The ASF licenses this file to  | ||||
| 	you under the Apache License, Version 2.0 (the "License"); you may not use  | ||||
| 	this file except in compliance with the License. You may obtain a copy of  | ||||
| 	the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required  | ||||
| 	by applicable law or agreed to in writing, software distributed under the  | ||||
| 	License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS  | ||||
| 	OF ANY KIND, either express or implied. See the License for the specific  | ||||
| 	language governing permissions and limitations under the License. --> | ||||
| <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/maven-v4_0_0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
|  | ||||
|     <parent> | ||||
|         <groupId>com.iluwatar</groupId> | ||||
|         <artifactId>naked-objects</artifactId> | ||||
|         <version>1.0-SNAPSHOT</version> | ||||
|     </parent> | ||||
| 	<parent> | ||||
| 		<groupId>com.iluwatar</groupId> | ||||
| 		<artifactId>naked-objects</artifactId> | ||||
| 		<version>1.1.0</version> | ||||
| 	</parent> | ||||
|  | ||||
|     <artifactId>naked-objects-webapp</artifactId> | ||||
|     <name>Simple App Webapp</name> | ||||
| 	<artifactId>naked-objects-webapp</artifactId> | ||||
|  | ||||
|     <description>This module runs both the Wicket viewer and the Restfulobjects viewer in a single webapp configured to run using the datanucleus object store.</description> | ||||
| 	<description>This module runs both the Wicket viewer and the Restfulobjects viewer in a single webapp configured to run using the datanucleus object store.</description> | ||||
|  | ||||
|     <packaging>war</packaging> | ||||
| 	<packaging>war</packaging> | ||||
|  | ||||
|     <properties> | ||||
|         <siteBaseDir>..</siteBaseDir> | ||||
|     </properties> | ||||
|      | ||||
|     <build> | ||||
|         <plugins> | ||||
|             <plugin> | ||||
|                 <groupId>org.mortbay.jetty</groupId> | ||||
|                 <artifactId>maven-jetty-plugin</artifactId> | ||||
|             </plugin> | ||||
| 	<properties> | ||||
| 		<siteBaseDir>..</siteBaseDir> | ||||
| 	</properties> | ||||
|  | ||||
|             <!-- mvn package --> | ||||
|             <plugin> | ||||
|                 <groupId>org.simplericity.jettyconsole</groupId> | ||||
|                 <artifactId>jetty-console-maven-plugin</artifactId> | ||||
|                 <executions> | ||||
|                     <execution> | ||||
|                         <goals> | ||||
|                             <goal>createconsole</goal> | ||||
|                         </goals> | ||||
|                         <configuration> | ||||
|                             <backgroundImage>${basedir}/src/main/jettyconsole/isis-banner.png</backgroundImage> | ||||
|                             <destinationFile>${project.build.directory}/${project.build.finalName}-jetty-console.jar</destinationFile> | ||||
|                         </configuration> | ||||
|                         <phase>package</phase> | ||||
|                     </execution> | ||||
|                 </executions> | ||||
|             </plugin> | ||||
| 	<build> | ||||
| 		<plugins> | ||||
| 			<plugin> | ||||
| 				<groupId>org.mortbay.jetty</groupId> | ||||
| 				<artifactId>maven-jetty-plugin</artifactId> | ||||
| 			</plugin> | ||||
|  | ||||
|             <plugin> | ||||
|                 <groupId>org.codehaus.mojo</groupId> | ||||
|                 <artifactId>build-helper-maven-plugin</artifactId> | ||||
|                 <version>1.8</version> | ||||
|                   <executions> | ||||
|                     <execution> | ||||
|                       <phase>validate</phase> | ||||
|                       <goals> | ||||
|                         <goal>maven-version</goal> | ||||
|                       </goals> | ||||
|                     </execution> | ||||
|                   </executions> | ||||
|             </plugin> | ||||
| 			<!-- mvn package --> | ||||
| 			<plugin> | ||||
| 				<groupId>org.simplericity.jettyconsole</groupId> | ||||
| 				<artifactId>jetty-console-maven-plugin</artifactId> | ||||
| 				<executions> | ||||
| 					<execution> | ||||
| 						<goals> | ||||
| 							<goal>createconsole</goal> | ||||
| 						</goals> | ||||
| 						<configuration> | ||||
| 							<backgroundImage>${basedir}/src/main/jettyconsole/isis-banner.png</backgroundImage> | ||||
| 							<destinationFile>${project.build.directory}/${project.build.finalName}-jetty-console.jar</destinationFile> | ||||
| 						</configuration> | ||||
| 						<phase>package</phase> | ||||
| 					</execution> | ||||
| 				</executions> | ||||
| 			</plugin> | ||||
|  | ||||
|             <plugin> | ||||
|                 <artifactId>maven-war-plugin</artifactId> | ||||
|                 <configuration> | ||||
|                     <warName>simpleapp</warName> | ||||
|                     <archive> | ||||
|                         <manifest> | ||||
|                             <addClasspath>false</addClasspath> | ||||
|                         </manifest> | ||||
|                         <manifestEntries> | ||||
|                             <Build-Time>${maven.build.timestamp}</Build-Time> | ||||
|                             <Build-Host>${agent.name}</Build-Host> | ||||
|                             <Build-User>${user.name}</Build-User> | ||||
|                             <Build-Maven>Maven ${maven.version}</Build-Maven> | ||||
|                             <Build-Java>${java.version}</Build-Java> | ||||
|                             <Build-OS>${os.name}</Build-OS> | ||||
|                             <Build-Label>${project.version}</Build-Label> | ||||
|                         </manifestEntries> | ||||
|                     </archive> | ||||
|                     <packagingExcludes>WEB-INF/lib/isis-core-webserver*.jar, | ||||
|                         WEB-INF/lib/javax.servlet-api-*.jar, | ||||
|                         WEB-INF/lib/javax.websocket-api-*.jar, | ||||
|                         WEB-INF/lib/jetty-all-*.jar</packagingExcludes> | ||||
|                 </configuration> | ||||
|             </plugin> | ||||
| 			<plugin> | ||||
| 				<groupId>org.codehaus.mojo</groupId> | ||||
| 				<artifactId>build-helper-maven-plugin</artifactId> | ||||
| 				<version>1.8</version> | ||||
| 				<executions> | ||||
| 					<execution> | ||||
| 						<phase>validate</phase> | ||||
| 						<goals> | ||||
| 							<goal>maven-version</goal> | ||||
| 						</goals> | ||||
| 					</execution> | ||||
| 				</executions> | ||||
| 			</plugin> | ||||
|  | ||||
|         </plugins> | ||||
|         <pluginManagement> | ||||
|             <plugins> | ||||
|                 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> | ||||
|                 <plugin> | ||||
|                     <groupId>org.eclipse.m2e</groupId> | ||||
|                     <artifactId>lifecycle-mapping</artifactId> | ||||
|                     <version>1.0.0</version> | ||||
|                     <configuration> | ||||
|                         <lifecycleMappingMetadata> | ||||
|                             <pluginExecutions> | ||||
|                                 <pluginExecution> | ||||
|                                     <pluginExecutionFilter> | ||||
|                                         <groupId>org.codehaus.mojo</groupId> | ||||
|                                         <artifactId>build-helper-maven-plugin</artifactId> | ||||
|                                         <versionRange>[1.5,)</versionRange> | ||||
|                                         <goals> | ||||
|                                             <goal>maven-version</goal> | ||||
|                                         </goals> | ||||
|                                     </pluginExecutionFilter> | ||||
|                                     <action> | ||||
|                                         <ignore></ignore> | ||||
|                                     </action> | ||||
|                                 </pluginExecution> | ||||
|                             </pluginExecutions> | ||||
|                         </lifecycleMappingMetadata> | ||||
|                     </configuration> | ||||
|                 </plugin> | ||||
|             </plugins> | ||||
|         </pluginManagement> | ||||
|     </build> | ||||
| 			<plugin> | ||||
| 				<artifactId>maven-war-plugin</artifactId> | ||||
| 				<configuration> | ||||
| 					<warName>simpleapp</warName> | ||||
| 					<archive> | ||||
| 						<manifest> | ||||
| 							<addClasspath>false</addClasspath> | ||||
| 						</manifest> | ||||
| 						<manifestEntries> | ||||
| 							<Build-Time>${maven.build.timestamp}</Build-Time> | ||||
| 							<Build-Host>${agent.name}</Build-Host> | ||||
| 							<Build-User>${user.name}</Build-User> | ||||
| 							<Build-Maven>Maven ${maven.version}</Build-Maven> | ||||
| 							<Build-Java>${java.version}</Build-Java> | ||||
| 							<Build-OS>${os.name}</Build-OS> | ||||
| 							<Build-Label>${project.version}</Build-Label> | ||||
| 						</manifestEntries> | ||||
| 					</archive> | ||||
| 					<packagingExcludes>WEB-INF/lib/isis-core-webserver*.jar, | ||||
| 						WEB-INF/lib/javax.servlet-api-*.jar, | ||||
| 						WEB-INF/lib/javax.websocket-api-*.jar, | ||||
| 						WEB-INF/lib/jetty-all-*.jar</packagingExcludes> | ||||
| 				</configuration> | ||||
| 			</plugin> | ||||
|  | ||||
|     <dependencies> | ||||
|      | ||||
|         <!-- other modules in this project --> | ||||
|         <dependency> | ||||
|             <groupId>${project.groupId}</groupId> | ||||
|             <artifactId>naked-objects-dom</artifactId> | ||||
|             <exclusions> | ||||
|                 <exclusion> | ||||
|                     <!-- so don't pick up transitive dependency to asm 4.0.0 --> | ||||
|                     <groupId>org.datanucleus</groupId> | ||||
|                     <artifactId>datanucleus-enhancer</artifactId> | ||||
|                 </exclusion> | ||||
|             </exclusions> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>${project.groupId}</groupId> | ||||
|             <artifactId>naked-objects-fixture</artifactId> | ||||
|             <exclusions> | ||||
|                 <exclusion> | ||||
|                     <!-- so don't pick up transitive dependency to asm 4.0.0 --> | ||||
|                     <groupId>org.datanucleus</groupId> | ||||
|                     <artifactId>datanucleus-enhancer</artifactId> | ||||
|                 </exclusion> | ||||
|             </exclusions> | ||||
|         </dependency> | ||||
|          | ||||
|         <!-- other isis components --> | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.viewer</groupId> | ||||
|             <artifactId>isis-viewer-wicket-impl</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-viewer-restfulobjects-server</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-security-shiro</artifactId> | ||||
|         </dependency> | ||||
| 		</plugins> | ||||
| 		<pluginManagement> | ||||
| 			<plugins> | ||||
| 				<!--This plugin's configuration is used to store Eclipse m2e settings  | ||||
| 					only. It has no influence on the Maven build itself. --> | ||||
| 				<plugin> | ||||
| 					<groupId>org.eclipse.m2e</groupId> | ||||
| 					<artifactId>lifecycle-mapping</artifactId> | ||||
| 					<version>1.0.0</version> | ||||
| 					<configuration> | ||||
| 						<lifecycleMappingMetadata> | ||||
| 							<pluginExecutions> | ||||
| 								<pluginExecution> | ||||
| 									<pluginExecutionFilter> | ||||
| 										<groupId>org.codehaus.mojo</groupId> | ||||
| 										<artifactId>build-helper-maven-plugin</artifactId> | ||||
| 										<versionRange>[1.5,)</versionRange> | ||||
| 										<goals> | ||||
| 											<goal>maven-version</goal> | ||||
| 										</goals> | ||||
| 									</pluginExecutionFilter> | ||||
| 									<action> | ||||
| 										<ignore></ignore> | ||||
| 									</action> | ||||
| 								</pluginExecution> | ||||
| 							</pluginExecutions> | ||||
| 						</lifecycleMappingMetadata> | ||||
| 					</configuration> | ||||
| 				</plugin> | ||||
| 			</plugins> | ||||
| 		</pluginManagement> | ||||
| 	</build> | ||||
|  | ||||
| 	<dependencies> | ||||
|  | ||||
| 		<!-- other modules in this project --> | ||||
| 		<dependency> | ||||
| 			<groupId>${project.groupId}</groupId> | ||||
| 			<artifactId>naked-objects-dom</artifactId> | ||||
| 			<exclusions> | ||||
| 				<exclusion> | ||||
| 					<!-- so don't pick up transitive dependency to asm 4.0.0 --> | ||||
| 					<groupId>org.datanucleus</groupId> | ||||
| 					<artifactId>datanucleus-enhancer</artifactId> | ||||
| 				</exclusion> | ||||
| 			</exclusions> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>${project.groupId}</groupId> | ||||
| 			<artifactId>naked-objects-fixture</artifactId> | ||||
| 			<exclusions> | ||||
| 				<exclusion> | ||||
| 					<!-- so don't pick up transitive dependency to asm 4.0.0 --> | ||||
| 					<groupId>org.datanucleus</groupId> | ||||
| 					<artifactId>datanucleus-enhancer</artifactId> | ||||
| 				</exclusion> | ||||
| 			</exclusions> | ||||
| 		</dependency> | ||||
|  | ||||
| 		<!-- other isis components --> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.viewer</groupId> | ||||
| 			<artifactId>isis-viewer-wicket-impl</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-viewer-restfulobjects-server</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-security-shiro</artifactId> | ||||
| 		</dependency> | ||||
|  | ||||
|  | ||||
|         <!-- isis core --> | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-runtime</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-wrapper</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-security</artifactId> | ||||
|         </dependency> | ||||
| 		<!-- isis core --> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-runtime</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-wrapper</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-security</artifactId> | ||||
| 		</dependency> | ||||
|  | ||||
|  | ||||
|         <!-- to run using WebServer (optional) --> | ||||
|         <dependency> | ||||
|             <groupId>org.apache.isis.core</groupId> | ||||
|             <artifactId>isis-core-webserver</artifactId> | ||||
|             <scope>runtime</scope> | ||||
|             <optional>true</optional> | ||||
|         </dependency> | ||||
| 		<!-- to run using WebServer (optional) --> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.isis.core</groupId> | ||||
| 			<artifactId>isis-core-webserver</artifactId> | ||||
| 			<scope>runtime</scope> | ||||
| 			<optional>true</optional> | ||||
| 		</dependency> | ||||
|  | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>org.apache.geronimo.specs</groupId> | ||||
|             <artifactId>geronimo-servlet_3.0_spec</artifactId> | ||||
|         </dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.apache.geronimo.specs</groupId> | ||||
| 			<artifactId>geronimo-servlet_3.0_spec</artifactId> | ||||
| 		</dependency> | ||||
|  | ||||
|         <!--  | ||||
|           JDBC drivers  | ||||
|           (for jdo objectstore) | ||||
|           --> | ||||
|         <dependency> | ||||
|             <groupId>org.hsqldb</groupId> | ||||
|             <artifactId>hsqldb</artifactId> | ||||
|         </dependency> | ||||
| 		<!-- JDBC drivers (for jdo objectstore) --> | ||||
| 		<dependency> | ||||
| 			<groupId>org.hsqldb</groupId> | ||||
| 			<artifactId>hsqldb</artifactId> | ||||
| 		</dependency> | ||||
|  | ||||
|         <!--  | ||||
|         <dependency> | ||||
|             <groupId>postgresql</groupId> | ||||
|             <artifactId>postgresql</artifactId> | ||||
|             <version>9.1-901.jdbc4</version> | ||||
|         </dependency> | ||||
|          --> | ||||
| 		<!-- <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId>  | ||||
| 			<version>9.1-901.jdbc4</version> </dependency> --> | ||||
|  | ||||
|         <!--  | ||||
|         mvn install:install-file -Dfile=sqljdbc4.jar \ | ||||
|                                  -DgroupId=com.microsoft.sqlserver \ | ||||
|                                  -DartifactId=jdbc \ | ||||
|                                  -Dversion=4.0 \ | ||||
|                                  -Dpackaging=jar | ||||
|          --> | ||||
|          <!--  | ||||
|         <dependency> | ||||
|             <groupId>com.microsoft.sqlserver</groupId> | ||||
|             <artifactId>sqljdbc4</artifactId> | ||||
|             <version>4.0</version> | ||||
|         </dependency> | ||||
|           --> | ||||
| 		<!-- mvn install:install-file -Dfile=sqljdbc4.jar \ -DgroupId=com.microsoft.sqlserver  | ||||
| 			\ -DartifactId=jdbc \ -Dversion=4.0 \ -Dpackaging=jar --> | ||||
| 		<!-- <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>sqljdbc4</artifactId>  | ||||
| 			<version>4.0</version> </dependency> --> | ||||
|  | ||||
|         <dependency> | ||||
|           <groupId>org.lazyluke</groupId> | ||||
|           <artifactId>log4jdbc-remix</artifactId> | ||||
|           <exclusions> | ||||
|             <exclusion> | ||||
|               <groupId>org.slf4j</groupId> | ||||
|               <artifactId>slf4j-api</artifactId> | ||||
|             </exclusion> | ||||
|           </exclusions> | ||||
|         </dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.lazyluke</groupId> | ||||
| 			<artifactId>log4jdbc-remix</artifactId> | ||||
| 			<exclusions> | ||||
| 				<exclusion> | ||||
| 					<groupId>org.slf4j</groupId> | ||||
| 					<artifactId>slf4j-api</artifactId> | ||||
| 				</exclusion> | ||||
| 			</exclusions> | ||||
| 		</dependency> | ||||
|  | ||||
|     </dependencies> | ||||
| 	</dependencies> | ||||
|  | ||||
|     <profiles> | ||||
|         <profile> | ||||
|             <id>self-host</id> | ||||
|             <build> | ||||
|                 <plugins> | ||||
|                     <!--  | ||||
|                     mvn -P self-host antrun:run | ||||
|                     --> | ||||
|                     <plugin> | ||||
|                         <groupId>org.apache.maven.plugins</groupId> | ||||
|                         <artifactId>maven-antrun-plugin</artifactId> | ||||
|                         <configuration> | ||||
|                             <tasks> | ||||
|                                 <exec executable="java" failonerror="true"> | ||||
|                                     <arg value="-jar" /> | ||||
|                                     <arg value="${project.build.directory}/${project.build.finalName}-jetty-console.jar" /> | ||||
|                                 </exec> | ||||
|                             </tasks> | ||||
|                         </configuration> | ||||
|                     </plugin> | ||||
|                 </plugins> | ||||
|             </build> | ||||
|         </profile> | ||||
|         <profile> | ||||
|             <id>intellij</id> | ||||
|             <activation> | ||||
|                 <property> | ||||
|                     <name>idea.version</name> | ||||
|                 </property> | ||||
|             </activation> | ||||
|             <dependencies> | ||||
|                 <dependency> | ||||
|                     <groupId>org.apache.geronimo.specs</groupId> | ||||
|                     <artifactId>geronimo-servlet_3.0_spec</artifactId> | ||||
|                     <!-- | ||||
|                     Use 'compile' so can run o.a.i.WebServer from within IntelliJ; | ||||
|                     can rely on servlet container to ignore this in war file | ||||
|                     --> | ||||
|                     <scope>compile</scope> | ||||
|                 </dependency> | ||||
|             </dependencies> | ||||
|         </profile> | ||||
|         <profile> | ||||
|             <id>jrebel</id> | ||||
|             <properties> | ||||
|                 <!-- as used in the rebel.xml in the dom project --> | ||||
|                 <target.dir>target</target.dir> | ||||
|                 <isis-jrebel-plugin.packagePrefix>dom.simple,org.apache.isis.objectstore.jdo.applib</isis-jrebel-plugin.packagePrefix> | ||||
|                 <isis-jrebel-plugin.loggingLevel>warn</isis-jrebel-plugin.loggingLevel> | ||||
|             </properties> | ||||
|             <build> | ||||
|                 <plugins> | ||||
|                     <!-- | ||||
|                     mvn -P jrebel antrun:run \ | ||||
|                         -Djrebel.jar="C:/Users/Dan/.IdeaIC13/config/plugins/jr-ide-idea/lib/jrebel/jrebel.jar" \ | ||||
|                         -Disis_jrebel_plugin.jar="C:/github/danhaywood/isis-jrebel-plugin/target/danhaywood-isis-jrebel-plugin-1.0.0-SNAPSHOT.jar" | ||||
|                     --> | ||||
|                     <plugin> | ||||
|                         <groupId>org.apache.maven.plugins</groupId> | ||||
|                         <artifactId>maven-antrun-plugin</artifactId> | ||||
|                         <configuration> | ||||
|                             <target> | ||||
|                                 <property name="compile_classpath" refid="maven.compile.classpath" /> | ||||
|                                 <property name="runtime_classpath" refid="maven.runtime.classpath" /> | ||||
|                                 <property name="test_classpath" refid="maven.test.classpath" /> | ||||
|                                 <property name="plugin_classpath" refid="maven.plugin.classpath" /> | ||||
| 	<profiles> | ||||
| 		<profile> | ||||
| 			<id>self-host</id> | ||||
| 			<build> | ||||
| 				<plugins> | ||||
| 					<!-- mvn -P self-host antrun:run --> | ||||
| 					<plugin> | ||||
| 						<groupId>org.apache.maven.plugins</groupId> | ||||
| 						<artifactId>maven-antrun-plugin</artifactId> | ||||
| 						<configuration> | ||||
| 							<tasks> | ||||
| 								<exec executable="java" failonerror="true"> | ||||
| 									<arg value="-jar" /> | ||||
| 									<arg | ||||
| 										value="${project.build.directory}/${project.build.finalName}-jetty-console.jar" /> | ||||
| 								</exec> | ||||
| 							</tasks> | ||||
| 						</configuration> | ||||
| 					</plugin> | ||||
| 				</plugins> | ||||
| 			</build> | ||||
| 		</profile> | ||||
| 		<profile> | ||||
| 			<id>intellij</id> | ||||
| 			<activation> | ||||
| 				<property> | ||||
| 					<name>idea.version</name> | ||||
| 				</property> | ||||
| 			</activation> | ||||
| 			<dependencies> | ||||
| 				<dependency> | ||||
| 					<groupId>org.apache.geronimo.specs</groupId> | ||||
| 					<artifactId>geronimo-servlet_3.0_spec</artifactId> | ||||
| 					<!-- Use 'compile' so can run o.a.i.WebServer from within IntelliJ;  | ||||
| 						can rely on servlet container to ignore this in war file --> | ||||
| 					<scope>compile</scope> | ||||
| 				</dependency> | ||||
| 			</dependencies> | ||||
| 		</profile> | ||||
| 		<profile> | ||||
| 			<id>jrebel</id> | ||||
| 			<properties> | ||||
| 				<!-- as used in the rebel.xml in the dom project --> | ||||
| 				<target.dir>target</target.dir> | ||||
| 				<isis-jrebel-plugin.packagePrefix>dom.simple,org.apache.isis.objectstore.jdo.applib</isis-jrebel-plugin.packagePrefix> | ||||
| 				<isis-jrebel-plugin.loggingLevel>warn</isis-jrebel-plugin.loggingLevel> | ||||
| 			</properties> | ||||
| 			<build> | ||||
| 				<plugins> | ||||
| 					<!-- mvn -P jrebel antrun:run \ -Djrebel.jar="C:/Users/Dan/.IdeaIC13/config/plugins/jr-ide-idea/lib/jrebel/jrebel.jar"  | ||||
| 						\ -Disis_jrebel_plugin.jar="C:/github/danhaywood/isis-jrebel-plugin/target/danhaywood-isis-jrebel-plugin-1.0.0-SNAPSHOT.jar" --> | ||||
| 					<plugin> | ||||
| 						<groupId>org.apache.maven.plugins</groupId> | ||||
| 						<artifactId>maven-antrun-plugin</artifactId> | ||||
| 						<configuration> | ||||
| 							<target> | ||||
| 								<property name="compile_classpath" refid="maven.compile.classpath" /> | ||||
| 								<property name="runtime_classpath" refid="maven.runtime.classpath" /> | ||||
| 								<property name="test_classpath" refid="maven.test.classpath" /> | ||||
| 								<property name="plugin_classpath" refid="maven.plugin.classpath" /> | ||||
|  | ||||
|                                 <echo message="" /> | ||||
|                                 <echo message="" /> | ||||
|                                 <echo message="jrebel.jar             = ${jrebel.jar}" /> | ||||
|                                 <echo message="isis_jrebel_plugin.jar = ${isis_jrebel_plugin.jar}" /> | ||||
|                                 <echo message="target.dir             = ${target.dir}" /> | ||||
|                                 <echo message="" /> | ||||
|                                 <echo message="" /> | ||||
| 								<echo message="" /> | ||||
| 								<echo message="" /> | ||||
| 								<echo message="jrebel.jar             = ${jrebel.jar}" /> | ||||
| 								<echo message="isis_jrebel_plugin.jar = ${isis_jrebel_plugin.jar}" /> | ||||
| 								<echo message="target.dir             = ${target.dir}" /> | ||||
| 								<echo message="" /> | ||||
| 								<echo message="" /> | ||||
|  | ||||
|                                 <exec executable="java" failonerror="true"> | ||||
|                                     <arg value="-javaagent:${jrebel.jar}" /> | ||||
|                                     <arg value="-Drebel.log=false" /> | ||||
|                                     <arg value="-Drebel.check_class_hash=true" /> | ||||
|                                     <arg value="-Drebel.packages_exclude=org.apache.isis" /> | ||||
| 								<exec executable="java" failonerror="true"> | ||||
| 									<arg value="-javaagent:${jrebel.jar}" /> | ||||
| 									<arg value="-Drebel.log=false" /> | ||||
| 									<arg value="-Drebel.check_class_hash=true" /> | ||||
| 									<arg value="-Drebel.packages_exclude=org.apache.isis" /> | ||||
|  | ||||
|                                     <!-- as used in the rebel.xml in the dom project --> | ||||
|                                     <arg value="-Dproject.root=${project.basedir}/.." /> | ||||
|                                     <arg value="-Dtarget.dir=${target.dir}" /> | ||||
| 									<!-- as used in the rebel.xml in the dom project --> | ||||
| 									<arg value="-Dproject.root=${project.basedir}/.." /> | ||||
| 									<arg value="-Dtarget.dir=${target.dir}" /> | ||||
|  | ||||
|                                     <arg value="-Drebel.plugins=${isis_jrebel_plugin.jar}" /> | ||||
|                                     <arg value="-Disis-jrebel-plugin.packagePrefix=${isis-jrebel-plugin.packagePrefix}" /> | ||||
|                                     <arg value="-Disis-jrebel-plugin.loggingLevel=${isis-jrebel-plugin.loggingLevel}" /> | ||||
|                                     <arg value="-XX:MaxPermSize=128m" /> | ||||
|                                     <arg value="-classpath" /> | ||||
|                                     <arg value="${runtime_classpath}" /> | ||||
|                                     <arg value="org.apache.isis.WebServer" /> | ||||
|                                 </exec> | ||||
|                             </target> | ||||
|                         </configuration> | ||||
|                     </plugin> | ||||
|                 </plugins> | ||||
|             </build> | ||||
|         </profile> | ||||
|     </profiles> | ||||
| 									<arg value="-Drebel.plugins=${isis_jrebel_plugin.jar}" /> | ||||
| 									<arg | ||||
| 										value="-Disis-jrebel-plugin.packagePrefix=${isis-jrebel-plugin.packagePrefix}" /> | ||||
| 									<arg | ||||
| 										value="-Disis-jrebel-plugin.loggingLevel=${isis-jrebel-plugin.loggingLevel}" /> | ||||
| 									<arg value="-XX:MaxPermSize=128m" /> | ||||
| 									<arg value="-classpath" /> | ||||
| 									<arg value="${runtime_classpath}" /> | ||||
| 									<arg value="org.apache.isis.WebServer" /> | ||||
| 								</exec> | ||||
| 							</target> | ||||
| 						</configuration> | ||||
| 					</plugin> | ||||
| 				</plugins> | ||||
| 			</build> | ||||
| 		</profile> | ||||
| 	</profiles> | ||||
|  | ||||
|  | ||||
| </project> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user