Skip to content

Commit

Permalink
Hi
Browse files Browse the repository at this point in the history
  • Loading branch information
talevy013 authored Jun 9, 2020
1 parent fed7111 commit 2e9d597
Show file tree
Hide file tree
Showing 2 changed files with 273 additions and 0 deletions.
101 changes: 101 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
{
"name": "cla-assistant",
"author": "https://github.com/cla-assistant",
"version": "1.8.3",
"homepage": "https://cla-assistant.io",
"description": "Contributor licencse agreement",
"keywords": [
"licencse",
"contributor",
"agreement",
"github",
"cla"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cla-assistant/cla-assistant"
},
"bugs": "https://github.com/cla-assistant/cla-assistant/issues",
"contributors": [],
"dependencies": {
"angular": "^1.7.0",
"array-sugar": "^1.2.2",
"async": "^2.6.0",
"body-parser": "^1.18.2",
"bower": "^1.8.4",
"bunyan": "^1.8.12",
"bunyan-sentry-stream": "^1.2.1",
"bunyan-slack": "0.0.10",
"codeceptjs": "^1.3.3",
"colors": "^1.2.1",
"connect-mongo": "^2.0.1",
"cookie-parser": "^1.4.3",
"dont-sniff-mimetype": "^1.0.0",
"ejs": "^2.5.8",
"express": "^4.16.3",
"express-session": "^1.15.6",
"github": "^13.1.1",
"glob": "^7.1.2",
"joi": "^13.1.2",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.5",
"memory-cache": "^0.2.0",
"merge": "^1.2.0",
"mongoose": "^4.13.12",
"node-sass-middleware": "^0.11.0",
"passport": "^0.4.0",
"passport-accesstoken": "^0.1.0",
"passport-github": "^1.1.0",
"q": "^1.5.1",
"raven": "^2.6.2",
"request": "^2.87.0",
"snyk": "^1.80.1",
"socket.io": "^2.1.0",
"valid-url": "^1.0.9",
"x-frame-options": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-coveralls": "^2.0.0",
"grunt-eslint": "^20.1.0",
"grunt-http": "^2.3.1",
"grunt-karma": "^3.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.13.3",
"grunt-scss-lint": "^0.5.0",
"istanbul": "^0.4.5",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-ng-html2js-preprocessor": "~1.0.0",
"karma-phantomjs-launcher": "1.0.4",
"load-grunt-tasks": "^3.5.2",
"mkdirp": "0.5.1",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.16",
"rewire": "^3.0.2",
"should": "^13.2.1",
"sinon": "^4.5.0",
"supertest": "3.0.0",
"webdriverio": "^4.13.2"
},
"engines": {
"node": "8"
},
"scripts": {
"start": "node app.js",
"postinstall": "bower install",
"test": "grunt test",
"acceptance_test": "source .env && npx codeceptjs run",
"snyk-monitor": "snyk auth $SNYK_TOKEN && snyk monitor",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"snyk": true
}
172 changes: 172 additions & 0 deletions pom (1).xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
<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>

<groupId>org.example</groupId>
<artifactId>jpademo</artifactId>
<version>1.0</version>
<packaging>jar</packaging>

<scm>
<connection>scm:git:ssh://my.git.server.internal/home/git/jpademo</connection>
<developerConnection>scm:git:ssh://my.git.server.internal/home/git/jpademo</developerConnection>
</scm>
<ciManagement>
<system>jenkins</system>
<url>https://my.jenkins.internal/jenkins</url>
</ciManagement>


<name>jpademo</name>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
<id>jar</id>
</execution>
</executions>
<configuration>
<archive>
<manifestFile>src/main/resources/Manifest.txt</manifestFile>
<manifest>
<addClasspath>true</addClasspath>

<mainClass>com.footballradar.jpademo.App</mainClass>

</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>${project.artifactId}-${project.version}</finalName>
</configuration>
</plugin>

</plugins>

</build>

<repositories>
<repository>
<url>http://download.java.net/maven/2/</url>
<id>hibernate-support</id>
<layout>default</layout>
<name>Repository for library Library[hibernate-support]</name>
</repository>
</repositories>



<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>3.6.3.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.2.5.ga</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>3.3.2.GA</version>
</dependency>
<dependency>
<groupId>javax.sql</groupId>
<artifactId>jdbc-stdext</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
<version>1.0.1B</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>ejb3-persistence</artifactId>
<version>1.0.1.GA</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.41</version>
</dependency>
<dependency>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
<type>jar</type>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.6.1</version>
</dependency>
</dependencies>

<distributionManagement>
<repository>
<id>My_Artifactory_Releases</id>
<name>My_Artifactory-releases</name>
<url>http://my.maven.repository.internal/artifactory/release</url>
</repository>

<snapshotRepository>
<id>My_Artifactory_Snapshots</id>
<name>My_Artifactory-snapshots</name>
<url>http://my.maven.repository.internal/artifactory/snapshot</url>
</snapshotRepository>

</distributionManagement>

</project>



0 comments on commit 2e9d597

Please sign in to comment.