Update some dependencies to be provided

This commit is contained in:
moparisthebest 2014-04-22 11:51:27 -04:00
parent 355ef02abd
commit d78cae4c41
3 changed files with 19 additions and 0 deletions

View File

@ -61,5 +61,13 @@
<groupId>myfaces</groupId> <groupId>myfaces</groupId>
<artifactId>myfaces-jsf-api</artifactId> <artifactId>myfaces-jsf-api</artifactId>
</dependency> </dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -44,6 +44,14 @@
<groupId>commons-logging</groupId> <groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId> <artifactId>commons-logging</artifactId>
</dependency> </dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>

View File

@ -122,11 +122,13 @@
<groupId>javax.servlet.jsp</groupId> <groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId> <artifactId>jsp-api</artifactId>
<version>2.0</version> <version>2.0</version>
<scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId> <artifactId>servlet-api</artifactId>
<version>2.4</version> <version>2.4</version>
<scope>provided</scope>
</dependency> </dependency>
@ -181,6 +183,7 @@
<groupId>org.apache.geronimo.specs</groupId> <groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-j2ee_1.4_spec</artifactId> <artifactId>geronimo-j2ee_1.4_spec</artifactId>
<version>1.0</version> <version>1.0</version>
<scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.moparisthebest.aptIn16</groupId> <groupId>com.moparisthebest.aptIn16</groupId>