| | |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-parent</artifactId> |
| | | <version>1.5.6.RELEASE</version> |
| | | <relativePath/> <!-- lookup parent from repository --> |
| | | <relativePath/> |
| | | </parent> |
| | | <packaging>war</packaging> |
| | | |
| | | <groupId>com.smartearth</groupId> |
| | | <artifactId>poiExcel</artifactId> |
| | | <version>0.2</version> |
| | | <name>poiExcel</name> |
| | | <packaging>jar</packaging> |
| | | <description>poiExcel</description> |
| | | <description>PoiExcel</description> |
| | | |
| | | <properties> |
| | | <java.version>1.8</java.version> |
| | | </properties> |
| | | |
| | | <dependencies> |
| | | <!--spring-boot--> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-web</artifactId> |
| | | <!--排除内置tomcat容器,让外部容器运行spring-boot项目--> |
| | | <exclusions> |
| | | <exclusion> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-tomcat</artifactId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <!--war:servlet--> |
| | | <dependency> |
| | | <groupId>javax.servlet</groupId> |
| | | <artifactId>javax.servlet-api</artifactId> |
| | | <version>3.1.0</version> |
| | | <scope>provided</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <finalName>PoiExcel</finalName> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <configuration> |
| | | <mainClass>com.smartearth.poiexcel.PoiExcelApplication</mainClass> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | |
| | | |
| | | </project> |