Skip to content

Commit 9ce127a

Browse files
Add files via upload
1 parent 32cb1d2 commit 9ce127a

File tree

10 files changed

+66
-0
lines changed

10 files changed

+66
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.studyeasy</groupId>
8+
<artifactId>HelloWorldMaven</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
<packaging>jar</packaging>
11+
12+
<properties>
13+
<maven.compiler.source>17</maven.compiler.source>
14+
<maven.compiler.target>17</maven.compiler.target>
15+
</properties>
16+
17+
<build>
18+
<plugins>
19+
<plugin>
20+
<!-- Build an executable JAR -->
21+
<groupId>org.apache.maven.plugins</groupId>
22+
<artifactId>maven-jar-plugin</artifactId>
23+
<version>3.1.0</version>
24+
<configuration>
25+
<archive>
26+
<manifest>
27+
<mainClass>org.studyeasy.HelloWorld</mainClass>
28+
</manifest>
29+
</archive>
30+
</configuration>
31+
</plugin>
32+
</plugins>
33+
</build>
34+
35+
</project>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package org.studyeasy;
2+
3+
public class HelloWorld {
4+
public static void main(String[] args) {
5+
6+
int value1 = 99999999;
7+
8+
9+
10+
System.out.println(value1);
11+
}
12+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package org.studyeasy;
2+
/* Author: Chand Sheikh */
3+
4+
public class Sample {
5+
int max = 2147483647; // 4 byte
6+
int min = -2147483648;
7+
short shortMax = 32767; //2 byte
8+
short shortMin = -32768;
9+
long longMax = 9223372036854775807L; // 8 byte
10+
long longMin = -9223372036854775808L;
11+
byte byteMax = 127; // 1 byte
12+
byte byteMin = -128;
13+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#Created by Apache Maven 3.6.3
2+
groupId=org.studyeasy
3+
artifactId=HelloWorldMaven
4+
version=1.0-SNAPSHOT
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
org\studyeasy\HelloWorld.class
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
C:\Users\Chaand\IdeaProjects\HelloWorldMaven\src\main\java\org\studyeasy\HelloWorld.java

S01L07 - Primitive Data Types - integer type/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst

Whitespace-only changes.

0 commit comments

Comments
 (0)