lni
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.dspace.modules</groupId> <artifactId>lni</artifactId> <version>5.11</version> </dependency>
<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> <groupId>org.dspace.modules</groupId> <artifactId>lni</artifactId> <packaging>war</packaging> <name>DSpace LNI :: Local Customizations</name> <description> This project allows you to overlay your own local LNI customizations on top of the default Lightweight Network Interface (LNI) web application provided with DSpace. </description> <parent> <groupId>org.dspace</groupId> <artifactId>modules</artifactId> <version>5.11</version> <relativePath>..</relativePath> </parent> <properties> <!-- This is the path to the root [dspace-src] directory. --> <root.basedir>${basedir}/../../..</root.basedir> </properties> <build> <filters> <!-- Filter using the properties file defined by dspace-parent POM --> <filter>${filters.file}</filter> </filters> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <archiveClasses>false</archiveClasses> <webResources> <resource> <filtering>true</filtering> <directory>${basedir}/src/main/webapp</directory> <includes> <include>WEB-INF/web.xml</include> </includes> </resource> </webResources> </configuration> <executions> <execution> <phase>prepare-package</phase> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>oracle-support</id> <activation> <property> <name>db.name</name> <value>oracle</value> </property> </activation> <dependencies> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> </dependency> </dependencies> </profile> </profiles> <dependencies> <dependency> <groupId>org.dspace.modules</groupId> <artifactId>additions</artifactId> </dependency> <dependency> <groupId>org.dspace</groupId> <artifactId>dspace-lni</artifactId> <type>war</type> </dependency> <dependency> <groupId>org.dspace</groupId> <artifactId>dspace-lni</artifactId> <type>jar</type> <classifier>classes</classifier> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>