Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull all the updates made to openrtb2x #1

Open
wants to merge 25 commits into
base: 2.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
db5b559
Use maven build helper to manage generated sources
Jun 18, 2014
0c58149
Merge pull request #56 from devunrulymedia/generate_sources
chompi Jun 20, 2014
d848357
added OpenRTB v2.3 support to validator
nickwhalen Jan 20, 2015
0252ee2
added OpenRTB v2.3 to openrtb-validator description
nickwhalen Jan 20, 2015
15bc338
added OpenRTB v2.3 to README
nickwhalen Jan 20, 2015
2780079
added OpenRTB v2.3 support to validator and updated pom version
nickwhalen Jan 20, 2015
7e898b7
Merge branch '2.0' of https://github.com/openrtb/openrtb2x into 2.0
nickwhalen Jan 20, 2015
da1454b
added ValidationResult to remove external dependency; updated license…
nickwhalen Feb 23, 2015
b85974f
added native-validator project which can be used to validate Native J…
nickwhalen Feb 27, 2015
7bec549
added description for new native-validator project
nickwhalen Feb 27, 2015
6334dac
updated urls to native-validator and openrtb-validator
nickwhalen Feb 27, 2015
5d98ac1
Update openrtb-schema_bid-request_v2-3.json
timezstyle Apr 9, 2015
d619bbc
Update openrtb-schema_bid-response_v2-3.json
timezstyle Apr 9, 2015
b0cf2de
Merge pull request #58 from timezstyle/patch-1
Mar 11, 2016
f38b95e
Merge pull request #59 from timezstyle/patch-2
Mar 11, 2016
30cc722
Made maxduration and minduration as recommended
vishal-pramati Jun 21, 2016
6630269
Merge pull request #67 from vishals79/2.0
Jun 21, 2016
e54276c
OpenRtb version 2.4
ssoni16 Jul 5, 2016
5e333a1
OpenRtb version 2.4
ssoni16 Jul 5, 2016
5aa605e
Changes in Schema
ssoni16 Jul 8, 2016
efe370b
Merge pull request #70 from ssoni16/2.0
Jul 20, 2016
8de1a53
Added v2.5 bid request and bid response schemas and updated tests
Mar 15, 2018
57ef679
Removed mccmnc string validation from bid request schema
Mar 16, 2018
f12d914
Update api framework range in bid request schema
Mar 16, 2018
57a9ee1
Merge pull request #79 from ssoni16/2.0
Mar 16, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,12 @@ specification with their own specific platform.
As a result of requirement (1) above, this package must be capable
of working in concert with the 'dsp-client' described above.

### [openrtb-validator](https://github.com/jm3/openrtb2x/tree/2.0/openrtb-validator)
### [openrtb-validator](https://github.com/openrtb/openrtb2x/tree/2.0/openrtb-validator)
This project provides a simple API that can be used to validate
JSON bid requests and responses according to OpenRTB specifications.
OpenRTB versions 1.0, 2.0, 2.1, and 2.2 are fully supported.
OpenRTB versions 1.0, 2.0, 2.1, 2.2, 2.3, 2.4 and 2.5 are fully supported.

### [native-validator](https://github.com/openrtb/openrtb2x/tree/2.0/native-validator)
This project provides a simple API that can be used to validate
Native JSON bid requests and responses according to specifications.
Native version 1.0 is fully supported.
72 changes: 46 additions & 26 deletions common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,32 +41,52 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.avro</groupId>
<artifactId>avro-maven-plugin</artifactId>
<version>1.7.4</version>
<executions>
<execution>
<id>schemas</id>
<phase>generate-sources</phase>
<goals>
<goal>schema</goal>
<goal>protocol</goal>
<goal>idl-protocol</goal>
</goals>
<configuration>
<excludes>
<exclude>**/mapred/tether/**</exclude>
</excludes>
<sourceDirectory>src/main/avro/</sourceDirectory>
<outputDirectory>src/main/java/</outputDirectory>
<testSourceDirectory>src/test/avro/</testSourceDirectory>
<testOutputDirectory>src/test/java/</testOutputDirectory>
<fieldVisibility>public</fieldVisibility>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.avro</groupId>
<artifactId>avro-maven-plugin</artifactId>
<version>1.7.4</version>
<executions>
<execution>
<id>schemas</id>
<phase>generate-sources</phase>
<goals>
<goal>schema</goal>
<goal>protocol</goal>
<goal>idl-protocol</goal>
</goals>
<configuration>
<excludes>
<exclude>**/mapred/tether/**</exclude>
</excludes>
<sourceDirectory>src/main/avro/</sourceDirectory>
<outputDirectory>target/generated-sources/avro</outputDirectory>
<testSourceDirectory>src/test/avro/</testSourceDirectory>
<testOutputDirectory>src/test/java/</testOutputDirectory>
<fieldVisibility>public</fieldVisibility>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9</version>
<executions>
<execution>
<id>add-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>target/generated-sources/avro</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>

</plugins>

</build>
Expand Down
286 changes: 0 additions & 286 deletions common/src/main/java/org/openrtb/common/api/Advertiser.java

This file was deleted.

Loading