Git Product home page Git Product logo

cienv's Introduction

CIEnv

This is an Continious Integration Environment Setup based on Maven which contains different components like Hudson and Nexus.

It is assumes that Nexus and the Hudson instances are running on separate servers.

Contained Components

  • Maven
  • Hudson
  • Nexus
  • Tomcat

Important Note

Based on the usage of the Maven RPM plugin this build will not work on Windows environment. You have to install rpmbuild to get it running.

Repository Setup for Maven Build

To get this project to work you have to configure the following repository into your settings.xml file:

<settings
  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/settings-1.0.0.xsd">

  <activeProfiles>
    <activeProfile>sonatype-nexus</activeProfile>
    <activeProfile>jenkins</activeProfile>
  </activeProfiles>

  <profiles>
    <profile>
      <id>sonatype-nexus</id>
      <activation>
        <activeByDefault>false</activeByDefault>
      </activation>

    <repositories>
      <repository>
        <id>sonatype-nexus</id>
        <name>Sonatype Nexus</name>
        <url>https://repository.sonatype.org/content/groups/forge</url>
        <layout>default</layout>
        <releases>
          <enabled>true</enabled>
          <updatePolicy>allways</updatePolicy>
          <checksumPolicy>warn</checksumPolicy>
        </releases>
        <snapshots>
          <enabled>false</enabled>
        </snapshots>
      </repository>
    </repositories>
    </profile>

    <profile>
      <id>jenkins</id>
      <activation>
        <activeByDefault>false</activeByDefault>
      </activation>

    <repositories>
      <repository>
        <id>jenkins</id>
        <name>Jenkins Repository</name>
        <url>http://maven.jenkins-ci.org:8081/content/repositories/releases/</url>
        <layout>default</layout>
        <releases>
          <enabled>true</enabled>
          <updatePolicy>allways</updatePolicy>
          <checksumPolicy>warn</checksumPolicy>
        </releases>
        <snapshots>
          <enabled>false</enabled>
        </snapshots>
      </repository>

http://maven.jenkins-ci.org:8081/content/repositories/releases/org/jenkins-ci/main/jenkins-war/

    </profile>
  </profiles>
</settings>

The Hudson is placed into a Tomcat 6.0.24. The configuration is intended to serve via a Apache proxy to the Tomcat to achieve calling of the Hudson site just giving the URL of the Hudson server.

The following RPM's will be created:

cienv-hudsonuser cienv-hudson

The result are a list of RPM's which current only tested with CentOS 5.5

License

This project is released under the terms of the Apache Software License, Version 2.0. See COPYING for details.

cienv's People

Contributors

khmarbaise avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.