Skip to content

businesscode/maven-repo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

BCD-UI

BCD-UI is a modern full-stack framework for building enterprise applications with web technologies.

For more information, please have a look at

Using with gradle

build.gradle:

apply plugin: 'war'
apply plugin: 'eclipse-wtp'

// Let this point to the root of your web application within your project
webAppDirName = "WebContent"

// set fixed values for Eclipse facets
eclipse.wtp.facet {
  file {
    facet name: 'jst.web', version: '4.0'
    facet name: 'java', version: '11'
    facet name: 'wst.jsdt.web', version: '1.0'
  }
}

dependencies {
  repositories {
    mavenCentral()
    maven {
      url "https://github.com/businesscode/maven-repo/raw/master"
    }
  }
  implementation 'de.businesscode.bcdui:bcd-ui-core:5.6.0-SNAPSHOT'
  implementation 'de.businesscode.bcdui:bcd-ui-theme-bcd:5.6.0-SNAPSHOT'

  // Adding Postgres JDBC, use the appropriate driver for your database 
  implementation 'org.postgresql:postgresql:42.1.4'

}

When using jsp, please also add

implementation 'de.businesscode.bcdui:bcd-ui-jsptaglib:5.6.0-SNAPSHOT'

Using with maven

<project>
  <dependencies>
    <dependency>
      <groupId>de.businesscode.bcdui</groupId>
      <artifactId>bcd-ui-core</artifactId>
      <version>5.6.0</version>
    </dependency>
    <dependency>
      <groupId>de.businesscode.bcdui</groupId>
      <artifactId>bcd-ui-theme-bcd</artifactId>
      <version>5.6.0</version>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <id>business-code-bcd-ui-repository</id>
      <url>https://github.com/businesscode/maven-repo/raw/master</url>
    </repository>
  </repositories>
</project>

BCD-UI is open-source licensed under Apache-2.0, powered by BusinessCode GmbH, Germany

5.6.0 published at 2022-02-06 19:37:13

About

Maven repository for BCD-UI

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published