bsec
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.butor</groupId>
<artifactId>bsec</artifactId>
<version>1.0.24</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>bsec</artifactId>
<packaging>war</packaging>
<version>1.0.24</version>
<parent>
<groupId>com.butor</groupId>
<artifactId>butor-maven-parent</artifactId>
<version>1.0.24</version>
</parent>
<properties>
<butor.service.conf.src>src/main/remote-services/</butor.service.conf.src>
</properties>
<name>Butor Security (bsec) webapp</name>
<description>
This is security webapp. it is part of Butor Portal.
It is part of Butor Framework and released under APL 2.0.
</description>
<url>http://www.butor.com</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://bitbucket.org/butor-team/bsec</url>
<connection>scm:git:http://bitbucket.org/butor-team/bsec.git</connection>
<developerConnection>scm:git:https://bitbucket.org/butor-team/bsec.git</developerConnection>
<tag>v1.0.24</tag>
</scm>
<profiles>
<profile>
<id>embedded-services</id>
<properties>
<butor.service.conf.src>src/main/embedded-services/</butor.service.conf.src>
</properties>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.21</version>
</dependency>
<dependency>
<groupId>com.butor</groupId>
<artifactId>butor-json-server</artifactId>
<version>${butor.version}</version>
</dependency>
<dependency>
<groupId>com.butor</groupId>
<artifactId>butor-attrset-model</artifactId>
<version>${butor.version}</version>
</dependency>
<dependency>
<groupId>com.butor</groupId>
<artifactId>butor-portal-model</artifactId>
<version>${butor.version}</version>
</dependency>
<dependency>
<groupId>com.butor</groupId>
<artifactId>butor-auth-model</artifactId>
<version>${butor.version}</version>
</dependency>
</dependencies>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<packagingExcludes>res/js/sso.js</packagingExcludes>
<webResources>
<resource>
<!-- copy resources from this folder into the webapp before packaging -->
<directory>${butor.service.conf.src}</directory>
</resource>
</webResources>
<attachClasses>true</attachClasses>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.release}</version>
</dependency>
<dependency>
<groupId>com.butor</groupId>
<artifactId>butor-sso</artifactId>
<version>${butor.version}</version>
</dependency>
<dependency>
<groupId>com.butor</groupId>
<artifactId>butor-spring</artifactId>
<version>${butor.version}</version>
</dependency>
<dependency>
<groupId>com.butor</groupId>
<artifactId>butor-auth-common</artifactId>
<version>${butor.version}</version>
</dependency>
<dependency>
<groupId>com.butor</groupId>
<artifactId>butor-log4j</artifactId>
<version>${butor.version}</version>
</dependency>
<dependency>
<groupId>com.butor</groupId>
<artifactId>butor-json</artifactId>
<version>${butor.version}</version>
</dependency>
<dependency>
<groupId>com.butor</groupId>
<artifactId>butor-portal-common</artifactId>
<version>${butor.version}</version>
</dependency>
</dependencies>
</project>