Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
peregin committed Apr 2, 2014
0 parents commit 083a880
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.metadata/
.DS_Store
.project
.metadata
.scala_dependencies
.classpath
.settings
.gradle
.cache
.idea/*
.idea_modules/*
bin/
target/
gen/
out/
build/
*.iml
*.tmp
*.bak
*.swp
RemoteSystemsTempFiles/

37 changes: 37 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>peregin</groupId>
<artifactId>telemetry-on-video</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>telemetry on video</name>
<description>telemetry data overlay on videos</description>

<organization>
<name>peregin</name>
<url>http://www.peregin.com</url>
</organization>
<inceptionYear>2014</inceptionYear>

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

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 083a880

Please sign in to comment.