|
1 | | -<?xml version="1.0" encoding="UTF-8"?> |
2 | | -<!-- |
3 | | - #%L |
4 | | - Bobcat |
5 | | - %% |
6 | | - Copyright (C) 2016 Cognifide Ltd. |
7 | | - %% |
8 | | - Licensed under the Apache License, Version 2.0 (the "License"); |
9 | | - you may not use this file except in compliance with the License. |
10 | | - You may obtain a copy of the License at |
11 | | - |
12 | | - http://www.apache.org/licenses/LICENSE-2.0 |
13 | | - |
14 | | -Unless required by applicable law or agreed to in writing, software |
15 | | -distributed under the License is distributed on an "AS IS" BASIS, |
16 | | -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
17 | | -See the License for the specific language governing permissions and |
18 | | -limitations under the License. |
19 | | -#L% |
20 | | ---> |
21 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
22 | | - <modelVersion>4.0.0</modelVersion> |
23 | | - |
24 | | - <parent> |
25 | | - <artifactId>bobcat</artifactId> |
26 | | - <groupId>com.cognifide.qa.bb</groupId> |
27 | | - <version>1.6.0-SNAPSHOT</version> |
28 | | - </parent> |
29 | | - |
30 | | - <artifactId>bb-aem-classic</artifactId> |
31 | | - |
32 | | - <name>Bobcat AEM Classic</name> |
33 | | - <properties> |
34 | | - <maven.compiler.source>1.8</maven.compiler.source> |
35 | | - <maven.compiler.target>1.8</maven.compiler.target> |
36 | | - </properties> |
37 | | - |
38 | | - <dependencies> |
39 | | - <dependency> |
40 | | - <groupId>com.cognifide.qa.bb</groupId> |
41 | | - <artifactId>bb-core</artifactId> |
42 | | - <version>${project.version}</version> |
43 | | - </dependency> |
44 | | - <!-- bb-aem-common dependency is needed for SiteAdminPage class --> |
45 | | - <dependency> |
46 | | - <groupId>com.cognifide.qa.bb</groupId> |
47 | | - <artifactId>bb-aem-common</artifactId> |
48 | | - <version>${project.version}</version> |
49 | | - </dependency> |
50 | | - <dependency> |
51 | | - <groupId>com.cognifide.qa.bb</groupId> |
52 | | - <artifactId>bb-annotations</artifactId> |
53 | | - <version>${project.version}</version> |
54 | | - </dependency> |
55 | | - <dependency> |
56 | | - <groupId>org.apache.commons</groupId> |
57 | | - <artifactId>commons-lang3</artifactId> |
58 | | - </dependency> |
59 | | - <dependency> |
60 | | - <groupId>org.reflections</groupId> |
61 | | - <artifactId>reflections</artifactId> |
62 | | - </dependency> |
63 | | - |
64 | | - <dependency> |
65 | | - <groupId>junit</groupId> |
66 | | - <artifactId>junit</artifactId> |
67 | | - <scope>test</scope> |
68 | | - </dependency> |
69 | | - <dependency> |
70 | | - <groupId>org.mockito</groupId> |
71 | | - <artifactId>mockito-core</artifactId> |
72 | | - <scope>test</scope> |
73 | | - </dependency> |
74 | | - <dependency> |
75 | | - <groupId>com.googlecode.zohhak</groupId> |
76 | | - <artifactId>zohhak</artifactId> |
77 | | - <version>1.1.1</version> |
78 | | - <scope>test</scope> |
79 | | - </dependency> |
80 | | - </dependencies> |
81 | | - |
82 | | - <build> |
83 | | - <plugins> |
84 | | - <plugin> |
85 | | - <groupId>org.apache.rat</groupId> |
86 | | - <artifactId>apache-rat-plugin</artifactId> |
87 | | - </plugin> |
88 | | - <plugin> |
89 | | - <groupId>org.apache.maven.plugins</groupId> |
90 | | - <artifactId>maven-compiler-plugin</artifactId> |
91 | | - </plugin> |
92 | | - </plugins> |
93 | | - </build> |
94 | | -</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + #%L |
| 4 | + Bobcat |
| 5 | + %% |
| 6 | + Copyright (C) 2016 Cognifide Ltd. |
| 7 | + %% |
| 8 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | + you may not use this file except in compliance with the License. |
| 10 | + You may obtain a copy of the License at |
| 11 | + |
| 12 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | + |
| 14 | +Unless required by applicable law or agreed to in writing, software |
| 15 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | +See the License for the specific language governing permissions and |
| 18 | +limitations under the License. |
| 19 | +#L% |
| 20 | +--> |
| 21 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | + <modelVersion>4.0.0</modelVersion> |
| 23 | + |
| 24 | + <parent> |
| 25 | + <artifactId>bobcat</artifactId> |
| 26 | + <groupId>com.cognifide.qa.bb</groupId> |
| 27 | + <version>1.6.0</version> |
| 28 | + </parent> |
| 29 | + |
| 30 | + <artifactId>bb-aem-classic</artifactId> |
| 31 | + |
| 32 | + <name>Bobcat AEM Classic</name> |
| 33 | + <properties> |
| 34 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 35 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 36 | + </properties> |
| 37 | + |
| 38 | + <dependencies> |
| 39 | + <dependency> |
| 40 | + <groupId>com.cognifide.qa.bb</groupId> |
| 41 | + <artifactId>bb-core</artifactId> |
| 42 | + <version>${project.version}</version> |
| 43 | + </dependency> |
| 44 | + <!-- bb-aem-common dependency is needed for SiteAdminPage class --> |
| 45 | + <dependency> |
| 46 | + <groupId>com.cognifide.qa.bb</groupId> |
| 47 | + <artifactId>bb-aem-common</artifactId> |
| 48 | + <version>${project.version}</version> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>com.cognifide.qa.bb</groupId> |
| 52 | + <artifactId>bb-annotations</artifactId> |
| 53 | + <version>${project.version}</version> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.apache.commons</groupId> |
| 57 | + <artifactId>commons-lang3</artifactId> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>org.reflections</groupId> |
| 61 | + <artifactId>reflections</artifactId> |
| 62 | + </dependency> |
| 63 | + |
| 64 | + <dependency> |
| 65 | + <groupId>junit</groupId> |
| 66 | + <artifactId>junit</artifactId> |
| 67 | + <scope>test</scope> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>org.mockito</groupId> |
| 71 | + <artifactId>mockito-core</artifactId> |
| 72 | + <scope>test</scope> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>com.googlecode.zohhak</groupId> |
| 76 | + <artifactId>zohhak</artifactId> |
| 77 | + <version>1.1.1</version> |
| 78 | + <scope>test</scope> |
| 79 | + </dependency> |
| 80 | + </dependencies> |
| 81 | + |
| 82 | + <build> |
| 83 | + <plugins> |
| 84 | + <plugin> |
| 85 | + <groupId>org.apache.rat</groupId> |
| 86 | + <artifactId>apache-rat-plugin</artifactId> |
| 87 | + </plugin> |
| 88 | + <plugin> |
| 89 | + <groupId>org.apache.maven.plugins</groupId> |
| 90 | + <artifactId>maven-compiler-plugin</artifactId> |
| 91 | + </plugin> |
| 92 | + </plugins> |
| 93 | + </build> |
| 94 | +</project> |
0 commit comments