|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>ru.spb.petrk</groupId> |
| 6 | + <artifactId>webissues</artifactId> |
| 7 | + <version>1.0-SNAPSHOT</version> |
| 8 | + <packaging>war</packaging> |
| 9 | + |
| 10 | + <name>webissues</name> |
| 11 | + |
| 12 | + <properties> |
| 13 | + <spring.version>6.2.6</spring.version> |
| 14 | + <spring.security.version>6.4.4</spring.security.version> |
| 15 | + <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir> |
| 16 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 17 | + <netbeans.hint.deploy.server>Tomcat</netbeans.hint.deploy.server> |
| 18 | + </properties> |
| 19 | + |
| 20 | + <dependencies> |
| 21 | + <dependency> |
| 22 | + <groupId>javax.servlet</groupId> |
| 23 | + <artifactId>jstl</artifactId> |
| 24 | + <version>1.2</version> |
| 25 | + </dependency> |
| 26 | + |
| 27 | + <dependency> |
| 28 | + <groupId>org.glassfish.web</groupId> |
| 29 | + <artifactId>jstl-impl</artifactId> |
| 30 | + <version>1.2</version> |
| 31 | + <exclusions> |
| 32 | + <exclusion> |
| 33 | + <artifactId>servlet-api</artifactId> |
| 34 | + <groupId>javax.servlet</groupId> |
| 35 | + </exclusion> |
| 36 | + <exclusion> |
| 37 | + <artifactId>jsp-api</artifactId> |
| 38 | + <groupId>javax.servlet.jsp</groupId> |
| 39 | + </exclusion> |
| 40 | + <exclusion> |
| 41 | + <artifactId>jstl-api</artifactId> |
| 42 | + <groupId>javax.servlet.jsp.jstl</groupId> |
| 43 | + </exclusion> |
| 44 | + </exclusions> |
| 45 | + </dependency> |
| 46 | + |
| 47 | + <dependency> |
| 48 | + <groupId>javax</groupId> |
| 49 | + <artifactId>javaee-web-api</artifactId> |
| 50 | + <version>6.0</version> |
| 51 | + <scope>provided</scope> |
| 52 | + </dependency> |
| 53 | + |
| 54 | + <dependency> |
| 55 | + <groupId>org.springframework</groupId> |
| 56 | + <artifactId>spring-core</artifactId> |
| 57 | + <version>${spring.version}</version> |
| 58 | + </dependency> |
| 59 | + |
| 60 | + <dependency> |
| 61 | + <groupId>org.springframework</groupId> |
| 62 | + <artifactId>spring-context</artifactId> |
| 63 | + <version>${spring.version}</version> |
| 64 | + </dependency> |
| 65 | + |
| 66 | + <dependency> |
| 67 | + <groupId>org.springframework</groupId> |
| 68 | + <artifactId>spring-beans</artifactId> |
| 69 | + <version>${spring.version}</version> |
| 70 | + </dependency> |
| 71 | + |
| 72 | + <dependency> |
| 73 | + <groupId>org.springframework.security</groupId> |
| 74 | + <artifactId>spring-security-core</artifactId> |
| 75 | + <version>${spring.security.version}</version> |
| 76 | + </dependency> |
| 77 | + |
| 78 | + <dependency> |
| 79 | + <groupId>org.springframework.security</groupId> |
| 80 | + <artifactId>spring-security-web</artifactId> |
| 81 | + <version>${spring.security.version}</version> |
| 82 | + </dependency> |
| 83 | + |
| 84 | + <dependency> |
| 85 | + <groupId>org.springframework.security</groupId> |
| 86 | + <artifactId>spring-security-config</artifactId> |
| 87 | + <version>${spring.security.version}</version> |
| 88 | + </dependency> |
| 89 | + |
| 90 | + <dependency> |
| 91 | + <groupId>org.springframework.security</groupId> |
| 92 | + <artifactId>spring-security-taglibs</artifactId> |
| 93 | + <version>${spring.security.version}</version> |
| 94 | + </dependency> |
| 95 | + |
| 96 | + <dependency> |
| 97 | + <groupId>org.springframework</groupId> |
| 98 | + <artifactId>spring-web</artifactId> |
| 99 | + <version>${spring.version}</version> |
| 100 | + </dependency> |
| 101 | + |
| 102 | + <dependency> |
| 103 | + <groupId>org.springframework</groupId> |
| 104 | + <artifactId>spring-webmvc</artifactId> |
| 105 | + <version>${spring.version}</version> |
| 106 | + </dependency> |
| 107 | + |
| 108 | + <dependency> |
| 109 | + <groupId>org.springframework</groupId> |
| 110 | + <artifactId>spring-orm</artifactId> |
| 111 | + <version>${spring.version}</version> |
| 112 | + </dependency> |
| 113 | + |
| 114 | + <dependency> |
| 115 | + <groupId>org.springframework.data</groupId> |
| 116 | + <artifactId>spring-data-jpa</artifactId> |
| 117 | + <version>[1.11.22,)</version> |
| 118 | + </dependency> |
| 119 | + |
| 120 | + <dependency> |
| 121 | + <groupId>org.hibernate</groupId> |
| 122 | + <artifactId>hibernate-core</artifactId> |
| 123 | + <version>3.6.10.Final</version> |
| 124 | + </dependency> |
| 125 | + |
| 126 | + <dependency> |
| 127 | + <groupId>org.hibernate</groupId> |
| 128 | + <artifactId>hibernate-entitymanager</artifactId> |
| 129 | + <version>3.6.10.Final</version> |
| 130 | + <exclusions> |
| 131 | + <exclusion> |
| 132 | + <groupId>cglib</groupId> |
| 133 | + <artifactId>cglib</artifactId> |
| 134 | + </exclusion> |
| 135 | + <exclusion> |
| 136 | + <groupId>dom4j</groupId> |
| 137 | + <artifactId>dom4j</artifactId> |
| 138 | + </exclusion> |
| 139 | + </exclusions> |
| 140 | + </dependency> |
| 141 | + |
| 142 | + <dependency> |
| 143 | + <groupId>org.hibernate</groupId> |
| 144 | + <artifactId>hibernate-ehcache</artifactId> |
| 145 | + <version>3.6.10.Final</version> |
| 146 | + </dependency> |
| 147 | + |
| 148 | + <dependency> |
| 149 | + <groupId>org.javassist</groupId> |
| 150 | + <artifactId>javassist</artifactId> |
| 151 | + <version>3.17.1-GA</version> |
| 152 | + </dependency> |
| 153 | + |
| 154 | + <dependency> |
| 155 | + <groupId>mysql</groupId> |
| 156 | + <artifactId>mysql-connector-java</artifactId> |
| 157 | + <version>5.1.49</version> |
| 158 | + <scope>runtime</scope> |
| 159 | + </dependency> |
| 160 | + |
| 161 | + </dependencies> |
| 162 | + |
| 163 | + <build> |
| 164 | + <plugins> |
| 165 | + <plugin> |
| 166 | + <groupId>org.apache.maven.plugins</groupId> |
| 167 | + <artifactId>maven-compiler-plugin</artifactId> |
| 168 | + <version>2.3.2</version> |
| 169 | + <configuration> |
| 170 | + <source>1.6</source> |
| 171 | + <target>1.6</target> |
| 172 | + <compilerArguments> |
| 173 | + <endorseddirs>${endorsed.dir}</endorseddirs> |
| 174 | + </compilerArguments> |
| 175 | + </configuration> |
| 176 | + </plugin> |
| 177 | + <plugin> |
| 178 | + <groupId>org.apache.maven.plugins</groupId> |
| 179 | + <artifactId>maven-war-plugin</artifactId> |
| 180 | + <version>2.3</version> |
| 181 | + <configuration> |
| 182 | + <failOnMissingWebXml>false</failOnMissingWebXml> |
| 183 | + </configuration> |
| 184 | + </plugin> |
| 185 | + <plugin> |
| 186 | + <groupId>org.apache.maven.plugins</groupId> |
| 187 | + <artifactId>maven-dependency-plugin</artifactId> |
| 188 | + <version>2.1</version> |
| 189 | + <executions> |
| 190 | + <execution> |
| 191 | + <phase>validate</phase> |
| 192 | + <goals> |
| 193 | + <goal>copy</goal> |
| 194 | + </goals> |
| 195 | + <configuration> |
| 196 | + <outputDirectory>${endorsed.dir}</outputDirectory> |
| 197 | + <silent>true</silent> |
| 198 | + <artifactItems> |
| 199 | + <artifactItem> |
| 200 | + <groupId>javax</groupId> |
| 201 | + <artifactId>javaee-endorsed-api</artifactId> |
| 202 | + <version>6.0</version> |
| 203 | + <type>jar</type> |
| 204 | + </artifactItem> |
| 205 | + </artifactItems> |
| 206 | + </configuration> |
| 207 | + </execution> |
| 208 | + </executions> |
| 209 | + </plugin> |
| 210 | + </plugins> |
| 211 | + </build> |
| 212 | + |
| 213 | +</project> |
0 commit comments